example-data.com

stores / #20

Altenwerth Inc

store · South Valley

628 Lenore Hill

Hours
Mon-Thu 9am-7pm, Fri-Sat 9am-9pm, Sun Closed
Phone
542.257.8754 x540

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/stores/20"
)
store = res.json()
{
  "id": 20,
  "name": "Altenwerth Inc",
  "slug": "altenwerth-inc-20",
  "description": "Expanded value-added collaboration",
  "address": "628 Lenore Hill",
  "city": "South Valley",
  "region": "Maine",
  "countryAlpha2": "FI",
  "postalCode": "11083-9085",
  "phone": "542.257.8754 x540",
  "website": "https://www.altenwerth-inc.com",
  "hours": "Mon-Thu 9am-7pm, Fri-Sat 9am-9pm, Sun Closed",
  "createdAt": "2025-03-09T22:49:09.164Z"
}
Draftbit