example-data.com

stores / #25

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/stores/25"
)
store = res.json()
{
  "id": 25,
  "name": "Greenholt, Rodriguez and Kuvalis",
  "slug": "greenholt-rodriguez-and-kuvalis-25",
  "description": "Smart heuristic initiative",
  "address": "419 Michelle Prairie",
  "city": "Cliffordstead",
  "region": "Maryland",
  "countryAlpha2": "FI",
  "postalCode": "74218-2767",
  "phone": "782.652.5791",
  "website": "https://www.greenholt-rodriguez-and-kuvali.com",
  "hours": "Mon-Sat 8am-8pm, Sun 10am-6pm",
  "createdAt": "2026-04-10T19:08:53.740Z"
}
Draftbit