Barton LLC
store · Eugeneport
24427 The Beeches
- Hours
- 24/7
- Phone
- (928) 696-4351
stores / #27
store · Eugeneport
24427 The Beeches
curl -sS \
"https://example-data.com/api/v1/stores/27" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/stores/27"
);
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/27"
);
const store = (await res.json()) as Store;import requests
res = requests.get(
"https://example-data.com/api/v1/stores/27"
)
store = res.json() {
"id": 27,
"name": "Barton LLC",
"slug": "barton-llc-27",
"description": "Fully-configurable regional data-warehouse",
"address": "24427 The Beeches",
"city": "Eugeneport",
"region": "Ohio",
"countryAlpha2": "IN",
"postalCode": "32485-0391",
"phone": "(928) 696-4351",
"website": null,
"hours": "24/7",
"createdAt": "2022-06-16T00:50:36.545Z"
}