example-data.com

stores / #19

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/stores/19"
)
store = res.json()
{
  "id": 19,
  "name": "Gislason - Doyle",
  "slug": "gislason-doyle-19",
  "description": "Business-focused contextually-based hierarchy",
  "address": "9770 Prospect Road",
  "city": "Hickleton",
  "region": "Ohio",
  "countryAlpha2": "IS",
  "postalCode": "69609-1199",
  "phone": "1-215-788-1894 x956",
  "website": "https://www.gislason-doyle.com",
  "hours": "Mon-Fri 9am-6pm, Sat 10am-4pm",
  "createdAt": "2021-07-21T22:30:03.226Z"
}
Draftbit