Ankunding, Kuhic and Hessel
store · Jonasmouth
698 Goyette Drives
- Hours
- Mon-Fri 9am-6pm, Sat 10am-4pm
- Phone
- +1 202-555-0107 ext 1
Overview
stores / #8
store · Jonasmouth
698 Goyette Drives
Request
curl example
curl -sS \ "https://example-data.com/api/v1/stores/8" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/stores/8" ); 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/8"
);
const store = (await res.json()) as Store; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/stores/8"
)
store = res.json() Response
{
"id": 8,
"name": "Ankunding, Kuhic and Hessel",
"slug": "ankunding-kuhic-and-hessel-8",
"description": "Open-source exuding installation",
"address": "698 Goyette Drives",
"city": "Jonasmouth",
"region": "Pennsylvania",
"countryAlpha2": "AT",
"postalCode": "16197-1697",
"phone": "+1 202-555-0107 ext 1",
"website": "https://example.com/stores/ankunding-kuhic-and-hessel",
"hours": "Mon-Fri 9am-6pm, Sat 10am-4pm",
"createdAt": "2023-05-21T08:42:52.336Z"
}