example-data.com
Menu
Browse docs and collections

stores

stores

Browse 30 stores records. Explore sample records and fetch JSON over a free REST API for prototypes, tests, and learning.

Overview

Cards

Compact

Detailed

Senger, Gusikowski and Waters

store · Boehmcester

531 Rempel Manors

Hours
Tue-Sat 10am-6pm, Sun-Mon Closed
Phone
+1 202-555-0101 ext 1

Beatty, Predovic and Emmerich

store · Cutler Bay

4286 Schuster Radial

Hours
Daily 10am-9pm
Phone
+1 202-555-0103 ext 1

Showing first 6 of 24 on this page.

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": 1,
      "name": "Gleason, Lehner and Bradtke",
      "slug": "gleason-lehner-and-bradtke-1",
      "description": "Compatible optimizing moderator",
      "address": "1730 The Spinney",
      "city": "Edgardofurt",
      "region": "Georgia",
      "countryAlpha2": "ID",
      "postalCode": "82959-1292",
      "phone": "+1 202-555-0100 ext 1",
      "website": "https://example.com/stores/gleason-lehner-and-bradtke",
      "hours": "Mon-Sat 8am-8pm, Sun 10am-6pm",
      "createdAt": "2022-08-06T06:51:30.132Z"
    },
    {
      "id": 2,
      "name": "Senger, Gusikowski and Waters",
      "slug": "senger-gusikowski-and-waters-2",
      "description": "Organic responsive algorithm",
      "address": "531 Rempel Manors",
      "city": "Boehmcester",
      "region": "Alabama",
      "countryAlpha2": "FR",
      "postalCode": "65035",
      "phone": "+1 202-555-0101 ext 1",
      "website": null,
      "hours": "Tue-Sat 10am-6pm, Sun-Mon Closed",
      "createdAt": "2025-02-28T16:58:41.156Z"
    },
    {
      "id": 3,
      "name": "Feeney, Predovic and Howe",
      "slug": "feeney-predovic-and-howe-3",
      "description": "Face to face secondary parallelism",
      "address": "1272 Mitchell Springs",
      "city": "South Eveport",
      "region": "Louisiana",
      "countryAlpha2": "NO",
      "postalCode": "91433",
      "phone": "+1 202-555-0102 ext 1",
      "website": "https://example.com/stores/feeney-predovic-and-howe",
      "hours": "Mon-Sat 8am-8pm, Sun 10am-6pm",
      "createdAt": "2023-11-25T23:03:36.463Z"
    }
  ],
  "meta": {
    "page": 1,
    "limit": 25,
    "total": 30,
    "totalPages": 2
  },
  "links": {
    "self": "/api/v1/stores?page=1",
    "first": "/api/v1/stores?page=1",
    "last": "/api/v1/stores?page=2",
    "next": "/api/v1/stores?page=2",
    "prev": null
  }
}

View full response →