Hagenes, Torp and Hirthe
store · Coraport
75410 Marks Gardens
- Hours
- Tue-Sat 10am-6pm, Sun-Mon Closed
- Phone
- +1 202-555-0106 ext 1
Overview
stores / #7
store · Coraport
75410 Marks Gardens
Request
curl example
curl -sS \ "https://example-data.com/api/v1/stores/7" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/stores/7" ); const store = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/stores.d.ts https://example-data.com/types/stores.d.ts
import type { Store } from "./types/stores";
const res = await fetch(
"https://example-data.com/api/v1/stores/7"
);
const store = (await res.json()) as Store; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/stores/7"
)
store = res.json() Response
{
"id": 7,
"name": "Hagenes, Torp and Hirthe",
"slug": "hagenes-torp-and-hirthe-7",
"description": "Optional 24/7 firmware",
"address": "75410 Marks Gardens",
"city": "Coraport",
"region": "Florida",
"countryAlpha2": "KR",
"postalCode": "83429-4880",
"phone": "+1 202-555-0106 ext 1",
"website": "https://example.com/stores/hagenes-torp-and-hirthe",
"hours": "Tue-Sat 10am-6pm, Sun-Mon Closed",
"createdAt": "2024-06-06T13:56:37.228Z"
}