example-data.com

stores / #18

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/stores/18"
)
store = res.json()
{
  "id": 18,
  "name": "Quitzon, Wolff and Simonis",
  "slug": "quitzon-wolff-and-simonis-18",
  "description": "Persevering attitude-oriented productivity",
  "address": "98079 Monahan Lock",
  "city": "Hoegerchester",
  "region": "Mississippi",
  "countryAlpha2": "NG",
  "postalCode": "42581-7761",
  "phone": "1-666-805-7763 x146",
  "website": "https://www.quitzon-wolff-and-simonis.com",
  "hours": "Mon-Thu 9am-7pm, Fri-Sat 9am-9pm, Sun Closed",
  "createdAt": "2023-08-05T06:15:59.455Z"
}
Draftbit