example-data.com

stores / #7

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/stores/7"
)
store = res.json()
{
  "id": 7,
  "name": "Hagenes, Torp and Hirthe",
  "slug": "hagenes-torp-and-hirthe-7",
  "description": "Optional 24/7 firmware",
  "address": "75410 Marks Gardens",
  "city": "Coraport",
  "region": "Florida",
  "countryAlpha2": "KR",
  "postalCode": "83429-4880",
  "phone": "1-411-442-4554 x080",
  "website": "https://www.hagenes-torp-and-hirthe.com",
  "hours": "Tue-Sat 10am-6pm, Sun-Mon Closed",
  "createdAt": "2024-06-06T13:56:37.228Z"
}
Draftbit