example-data.com

stores / #26

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/stores/26"
)
store = res.json()
{
  "id": 26,
  "name": "Flatley - Kling",
  "slug": "flatley-kling-26",
  "description": "Decentralized 24/7 protocol",
  "address": "659 Ashley Loaf",
  "city": "Lake Jaylan",
  "region": "North Dakota",
  "countryAlpha2": "KE",
  "postalCode": "49686-7840",
  "phone": "(205) 853-7561 x57559",
  "website": "https://www.flatley-kling.com",
  "hours": "24/7",
  "createdAt": "2026-04-24T08:10:40.049Z"
}
Draftbit