Gislason - Doyle
store · Hickleton
9770 Prospect Road
- Hours
- Mon-Fri 9am-6pm, Sat 10am-4pm
- Phone
- +1 202-555-0118 ext 1
Overview
stores / #19
store · Hickleton
9770 Prospect Road
Request
curl example
curl -sS \ "https://example-data.com/api/v1/stores/19" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/stores/19" ); 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/19"
);
const store = (await res.json()) as Store; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/stores/19"
)
store = res.json() Response
{
"id": 19,
"name": "Gislason - Doyle",
"slug": "gislason-doyle-19",
"description": "Business-focused contextually-based hierarchy",
"address": "9770 Prospect Road",
"city": "Hickleton",
"region": "Ohio",
"countryAlpha2": "IS",
"postalCode": "69609-1199",
"phone": "+1 202-555-0118 ext 1",
"website": "https://example.com/stores/gislason-doyle",
"hours": "Mon-Fri 9am-6pm, Sat 10am-4pm",
"createdAt": "2021-07-21T22:30:03.226Z"
}