example-data.com

stores / #22

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/stores/22"
)
store = res.json()
{
  "id": 22,
  "name": "Abbott - Kreiger",
  "slug": "abbott-kreiger-22",
  "description": "Programmable reciprocal database",
  "address": "7991 Green Lane",
  "city": "Haleyhaven",
  "region": "Alaska",
  "countryAlpha2": "NL",
  "postalCode": "14918-5620",
  "phone": "625-893-3901",
  "website": "https://www.abbott-kreiger.com",
  "hours": "Mon-Fri 9am-6pm, Sat 10am-4pm",
  "createdAt": "2023-03-23T00:11:41.868Z"
}
Draftbit