example-data.com
Menu
Browse docs and collections

Overview

stores / #26

Component variants

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "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": "+1 202-555-0125 ext 1",
  "website": "https://example.com/stores/flatley-kling",
  "hours": "24/7",
  "createdAt": "2026-04-24T08:10:40.049Z"
}