example-data.com

stores / #29

Swaniawski LLC

store · West Annabelhaven

15938 Michel Falls

Hours
Mon-Thu 9am-7pm, Fri-Sat 9am-9pm, Sun Closed
Phone
1-894-452-4408

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/stores/29"
)
store = res.json()
{
  "id": 29,
  "name": "Swaniawski LLC",
  "slug": "swaniawski-llc-29",
  "description": "Expanded resilient product",
  "address": "15938 Michel Falls",
  "city": "West Annabelhaven",
  "region": "Arizona",
  "countryAlpha2": "MA",
  "postalCode": "74198-4380",
  "phone": "1-894-452-4408",
  "website": "https://www.swaniawski-llc.com",
  "hours": "Mon-Thu 9am-7pm, Fri-Sat 9am-9pm, Sun Closed",
  "createdAt": "2026-02-27T15:14:18.298Z"
}
Draftbit