example-data.com

stores / #13

Crooks - Corwin

store · West Houston

30257 Garden Street

Hours
Mon-Sat 9am-5pm, Sun 12pm-4pm
Phone
272-508-8795 x6466

Component variants

curl -sS \
  "https://example-data.com/api/v1/stores/13" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/stores/13"
);
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/13"
);
const store = (await res.json()) as Store;
import requests

res = requests.get(
    "https://example-data.com/api/v1/stores/13"
)
store = res.json()
{
  "id": 13,
  "name": "Crooks - Corwin",
  "slug": "crooks-corwin-13",
  "description": "Programmable motivating middleware",
  "address": "30257 Garden Street",
  "city": "West Houston",
  "region": "Colorado",
  "countryAlpha2": "CO",
  "postalCode": "03116-1392",
  "phone": "272-508-8795 x6466",
  "website": "https://www.crooks-corwin.com",
  "hours": "Mon-Sat 9am-5pm, Sun 12pm-4pm",
  "createdAt": "2021-11-11T03:38:10.421Z"
}
Draftbit