example-data.com

stores / #11

Fritsch - Pagac

store · East Meghan

62911 N 2nd Street

Hours
Mon-Sat 8am-8pm, Sun 10am-6pm
Phone
1-721-475-6656 x0706

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/stores/11"
)
store = res.json()
{
  "id": 11,
  "name": "Fritsch - Pagac",
  "slug": "fritsch-pagac-11",
  "description": "Open-architected exuding neural-net",
  "address": "62911 N 2nd Street",
  "city": "East Meghan",
  "region": "Rhode Island",
  "countryAlpha2": "AE",
  "postalCode": "15517-6704",
  "phone": "1-721-475-6656 x0706",
  "website": "https://www.fritsch-pagac.com",
  "hours": "Mon-Sat 8am-8pm, Sun 10am-6pm",
  "createdAt": "2021-06-15T20:33:12.913Z"
}
Draftbit