Nikolaus - Gislason
store · Kirkshire
85183 Hintz Harbor
- Hours
- Mon-Sat 8am-8pm, Sun 10am-6pm
- Phone
- (605) 737-2130
stores / #23
store · Kirkshire
85183 Hintz Harbor
curl -sS \
"https://example-data.com/api/v1/stores/23" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/stores/23"
);
const store = await res.json();import type { Store } from "https://example-data.com/types/stores.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/stores/23"
);
const store = (await res.json()) as Store;import requests
res = requests.get(
"https://example-data.com/api/v1/stores/23"
)
store = res.json() {
"id": 23,
"name": "Nikolaus - Gislason",
"slug": "nikolaus-gislason-23",
"description": "Persistent intangible knowledge user",
"address": "85183 Hintz Harbor",
"city": "Kirkshire",
"region": "West Virginia",
"countryAlpha2": "IE",
"postalCode": "01568",
"phone": "(605) 737-2130",
"website": "https://www.nikolaus-gislason.com",
"hours": "Mon-Sat 8am-8pm, Sun 10am-6pm",
"createdAt": "2021-07-29T05:48:50.785Z"
}