example-data.com
Menu
Browse docs and collections

stores

stores

Page 2 of 2.

Overview

Request

curl example

curl -sS \
  "https://example-data.com/api/v1/stores?limit=25"

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/stores?limit=25"
);
const { data, meta } = 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, ListEnvelope } from "./types/stores";

const res = await fetch(
  "https://example-data.com/api/v1/stores?limit=25"
);
const { data, meta } = (await res.json()) as ListEnvelope<Store>;

Python example

import requests

res = requests.get(
    "https://example-data.com/api/v1/stores",
    params={"limit": 25},
)
data = res.json()

Response

{
  "data": [
    {
      "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": "+1 202-555-0124 ext 1",
      "website": "https://example.com/stores/greenholt-rodriguez-and-kuvali",
      "hours": "Mon-Sat 8am-8pm, Sun 10am-6pm",
      "createdAt": "2026-04-10T19:08:53.740Z"
    },
    {
      "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"
    },
    {
      "id": 27,
      "name": "Barton LLC",
      "slug": "barton-llc-27",
      "description": "Fully-configurable regional data-warehouse",
      "address": "24427 The Beeches",
      "city": "Eugeneport",
      "region": "Ohio",
      "countryAlpha2": "IN",
      "postalCode": "32485-0391",
      "phone": "+1 202-555-0126 ext 1",
      "website": null,
      "hours": "24/7",
      "createdAt": "2022-06-16T00:50:36.545Z"
    }
  ],
  "meta": {
    "page": 2,
    "limit": 24,
    "total": 30,
    "totalPages": 2
  },
  "links": {
    "self": "/api/v1/stores?page=2&limit=24",
    "first": "/api/v1/stores?page=1&limit=24",
    "last": "/api/v1/stores?page=2&limit=24",
    "next": null,
    "prev": "/api/v1/stores?page=1&limit=24"
  }
}