example-data.com

stores / #6

Terry Inc

store · Estefaniamouth

3913 Stoltenberg Rest

Hours
Mon-Thu 9am-7pm, Fri-Sat 9am-9pm, Sun Closed
Phone
1-807-843-3471 x17940

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/stores/6"
)
store = res.json()
{
  "id": 6,
  "name": "Terry Inc",
  "slug": "terry-inc-6",
  "description": "Operative fresh-thinking migration",
  "address": "3913 Stoltenberg Rest",
  "city": "Estefaniamouth",
  "region": "Oklahoma",
  "countryAlpha2": "KE",
  "postalCode": "38705",
  "phone": "1-807-843-3471 x17940",
  "website": "https://www.terry-inc.com",
  "hours": "Mon-Thu 9am-7pm, Fri-Sat 9am-9pm, Sun Closed",
  "createdAt": "2021-11-15T14:58:15.475Z"
}
Draftbit