example-data.com

stores / #15

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/stores/15"
)
store = res.json()
{
  "id": 15,
  "name": "Toy and Sons",
  "slug": "toy-and-sons-15",
  "description": "Organic system-worthy emulation",
  "address": "98488 Collins Vista",
  "city": "Taliaboro",
  "region": "New York",
  "countryAlpha2": "DK",
  "postalCode": "14056-8440",
  "phone": "573-201-8224 x42713",
  "website": "https://www.toy-and-sons.com",
  "hours": "Mon-Fri 8am-5pm",
  "createdAt": "2024-09-06T18:49:57.995Z"
}
Draftbit