Feeney, Predovic and Howe
store · South Eveport
1272 Mitchell Springs
- Hours
- Mon-Sat 8am-8pm, Sun 10am-6pm
- Phone
- +1 202-555-0102 ext 1
Overview
stores / #3
store · South Eveport
1272 Mitchell Springs
Request
curl example
curl -sS \ "https://example-data.com/api/v1/stores/3" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/stores/3" ); 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/3"
);
const store = (await res.json()) as Store; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/stores/3"
)
store = res.json() Response
{
"id": 3,
"name": "Feeney, Predovic and Howe",
"slug": "feeney-predovic-and-howe-3",
"description": "Face to face secondary parallelism",
"address": "1272 Mitchell Springs",
"city": "South Eveport",
"region": "Louisiana",
"countryAlpha2": "NO",
"postalCode": "91433",
"phone": "+1 202-555-0102 ext 1",
"website": "https://example.com/stores/feeney-predovic-and-howe",
"hours": "Mon-Sat 8am-8pm, Sun 10am-6pm",
"createdAt": "2023-11-25T23:03:36.463Z"
}