Fritsch - Pagac
store · East Meghan
62911 N 2nd Street
- Hours
- Mon-Sat 8am-8pm, Sun 10am-6pm
- Phone
- +1 202-555-0110 ext 1
Overview
stores / #11
store · East Meghan
62911 N 2nd Street
Request
curl example
curl -sS \ "https://example-data.com/api/v1/stores/11" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/stores/11" ); 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/11"
);
const store = (await res.json()) as Store; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/stores/11"
)
store = res.json() Response
{
"id": 11,
"name": "Fritsch - Pagac",
"slug": "fritsch-pagac-11",
"description": "Open-architected exuding neural-net",
"address": "62911 N 2nd Street",
"city": "East Meghan",
"region": "Rhode Island",
"countryAlpha2": "AE",
"postalCode": "15517-6704",
"phone": "+1 202-555-0110 ext 1",
"website": "https://example.com/stores/fritsch-pagac",
"hours": "Mon-Sat 8am-8pm, Sun 10am-6pm",
"createdAt": "2021-06-15T20:33:12.913Z"
}