Beatty, Predovic and Emmerich
store · Cutler Bay
4286 Schuster Radial
- Hours
- Daily 10am-9pm
- Phone
- 316-261-2453 x251
stores / #4
store · Cutler Bay
4286 Schuster Radial
curl -sS \
"https://example-data.com/api/v1/stores/4" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/stores/4"
);
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/4"
);
const store = (await res.json()) as Store;import requests
res = requests.get(
"https://example-data.com/api/v1/stores/4"
)
store = res.json() {
"id": 4,
"name": "Beatty, Predovic and Emmerich",
"slug": "beatty-predovic-and-emmerich-4",
"description": "Profit-focused logistical structure",
"address": "4286 Schuster Radial",
"city": "Cutler Bay",
"region": "Massachusetts",
"countryAlpha2": "ES",
"postalCode": "67255",
"phone": "316-261-2453 x251",
"website": null,
"hours": "Daily 10am-9pm",
"createdAt": "2024-10-05T08:09:39.842Z"
}