example-data.com

stores

stores

Page 2 of 2.

Barton LLC

store · Eugeneport

24427 The Beeches

Hours
24/7
Phone
(928) 696-4351

Swaniawski LLC

store · West Annabelhaven

15938 Michel Falls

Hours
Mon-Thu 9am-7pm, Fri-Sat 9am-9pm, Sun Closed
Phone
1-894-452-4408

Grimes LLC

store · West Gertrudeport

619 Greenholt Coves

Hours
Mon-Fri 9am-6pm, Sat 10am-4pm
Phone
278.860.0670 x4289
curl -sS \
  "https://example-data.com/api/v1/stores?limit=25"
const res = await fetch(
  "https://example-data.com/api/v1/stores?limit=25"
);
const { data, meta } = await res.json();
import type { Store, ListEnvelope } from "https://example-data.com/types/stores.d.ts";

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

res = requests.get(
    "https://example-data.com/api/v1/stores",
    params={"limit": 25},
)
data = res.json()
{
  "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": "782.652.5791",
      "website": "https://www.greenholt-rodriguez-and-kuvali.com",
      "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": "(205) 853-7561 x57559",
      "website": "https://www.flatley-kling.com",
      "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": "(928) 696-4351",
      "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",
    "next": null,
    "prev": "/api/v1/stores?page=1"
  }
}
Draftbit