example-data.com

stores / #10

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/stores/10"
)
store = res.json()
{
  "id": 10,
  "name": "Jacobson, Bauch and Bailey",
  "slug": "jacobson-bauch-and-bailey-10",
  "description": "Open-source contextually-based time-frame",
  "address": "4044 Cassin Highway",
  "city": "New Albina",
  "region": "North Carolina",
  "countryAlpha2": "FR",
  "postalCode": "06953-2395",
  "phone": "871-465-1240",
  "website": "https://www.jacobson-bauch-and-bailey.com",
  "hours": "Mon-Fri 9am-6pm, Sat 10am-4pm",
  "createdAt": "2025-07-04T22:46:00.923Z"
}
Draftbit