example-data.com

stores / #17

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/stores/17"
)
store = res.json()
{
  "id": 17,
  "name": "Hackett Inc",
  "slug": "hackett-inc-17",
  "description": "Implemented asynchronous artificial intelligence",
  "address": "54600 Clark Street",
  "city": "Fort Tyreekfort",
  "region": "Massachusetts",
  "countryAlpha2": "MX",
  "postalCode": "36137",
  "phone": "755-650-4941 x5716",
  "website": "https://www.hackett-inc.com",
  "hours": "Mon-Fri 8am-5pm",
  "createdAt": "2026-01-12T06:04:00.800Z"
}
Draftbit