example-data.com

stores / #28

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/stores/28"
)
store = res.json()
{
  "id": 28,
  "name": "Smith Group",
  "slug": "smith-group-28",
  "description": "Cross-platform impactful architecture",
  "address": "1835 McLaughlin Falls",
  "city": "Hollywood",
  "region": "Florida",
  "countryAlpha2": "PK",
  "postalCode": "24311",
  "phone": "287-382-5822 x954",
  "website": "https://www.smith-group.com",
  "hours": "Daily 10am-9pm",
  "createdAt": "2024-10-18T13:47:52.264Z"
}
Draftbit