example-data.com
Menu
Browse docs and collections

Overview

stores / #29

Component variants

Request

curl example

curl -sS \
  "https://example-data.com/api/v1/stores/29" \
  -H "Accept: application/json"

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/stores/29"
);
const store = await res.json();

TypeScript example

// Download once: mkdir -p types && curl -o types/stores.d.ts https://example-data.com/types/stores.d.ts
import type { Store } from "./types/stores";

const res = await fetch(
  "https://example-data.com/api/v1/stores/29"
);
const store = (await res.json()) as Store;

Python example

import requests

res = requests.get(
    "https://example-data.com/api/v1/stores/29"
)
store = res.json()

Response

{
  "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 202-555-0128 ext 1",
  "website": "https://example.com/stores/swaniawski-llc",
  "hours": "Mon-Thu 9am-7pm, Fri-Sat 9am-9pm, Sun Closed",
  "createdAt": "2026-02-27T15:14:18.298Z"
}