example-data.com

stores / #24

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/stores/24"
)
store = res.json()
{
  "id": 24,
  "name": "Schumm and Sons",
  "slug": "schumm-and-sons-24",
  "description": "Immersive attitude-oriented database",
  "address": "7623 Broadway",
  "city": "Fort Reynold",
  "region": "Washington",
  "countryAlpha2": "IE",
  "postalCode": "67818",
  "phone": "635-960-7324 x5164",
  "website": "https://www.schumm-and-sons.com",
  "hours": "24/7",
  "createdAt": "2025-09-29T05:25:51.339Z"
}
Draftbit