example-data.com

stores / #30

Grimes LLC

store · West Gertrudeport

619 Greenholt Coves

Hours
Mon-Fri 9am-6pm, Sat 10am-4pm
Phone
278.860.0670 x4289

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/stores/30"
)
store = res.json()
{
  "id": 30,
  "name": "Grimes LLC",
  "slug": "grimes-llc-30",
  "description": "Devolved interactive help-desk",
  "address": "619 Greenholt Coves",
  "city": "West Gertrudeport",
  "region": "West Virginia",
  "countryAlpha2": "TR",
  "postalCode": "91186",
  "phone": "278.860.0670 x4289",
  "website": null,
  "hours": "Mon-Fri 9am-6pm, Sat 10am-4pm",
  "createdAt": "2022-01-21T13:27:19.008Z"
}
Draftbit