example-data.com

stores / #8

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/stores/8"
)
store = res.json()
{
  "id": 8,
  "name": "Ankunding, Kuhic and Hessel",
  "slug": "ankunding-kuhic-and-hessel-8",
  "description": "Open-source exuding installation",
  "address": "698 Goyette Drives",
  "city": "Jonasmouth",
  "region": "Pennsylvania",
  "countryAlpha2": "AT",
  "postalCode": "16197-1697",
  "phone": "1-502-519-6907 x6836",
  "website": "https://www.ankunding-kuhic-and-hessel.com",
  "hours": "Mon-Fri 9am-6pm, Sat 10am-4pm",
  "createdAt": "2023-05-21T08:42:52.336Z"
}
Draftbit