Muller Inc
store · Mosciskiland
74762 Zieme Villages
- Hours
- Tue-Sat 10am-6pm, Sun-Mon Closed
- Phone
- 305-271-3888
stores / #9
store · Mosciskiland
74762 Zieme Villages
curl -sS \
"https://example-data.com/api/v1/stores/9" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/stores/9"
);
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/9"
);
const store = (await res.json()) as Store;import requests
res = requests.get(
"https://example-data.com/api/v1/stores/9"
)
store = res.json() {
"id": 9,
"name": "Muller Inc",
"slug": "muller-inc-9",
"description": "Visionary human-resource functionalities",
"address": "74762 Zieme Villages",
"city": "Mosciskiland",
"region": "Maine",
"countryAlpha2": "NO",
"postalCode": "70411-7566",
"phone": "305-271-3888",
"website": null,
"hours": "Tue-Sat 10am-6pm, Sun-Mon Closed",
"createdAt": "2024-02-07T18:07:15.697Z"
}