example-data.com

stores

stores

Browse 30 stores records. Free mock data API by Draftbit — fetch over REST or browse paginated HTML.

Senger, Gusikowski and Waters

store · Boehmcester

531 Rempel Manors

Hours
Tue-Sat 10am-6pm, Sun-Mon Closed
Phone
1-621-712-8860 x489

Beatty, Predovic and Emmerich

store · Cutler Bay

4286 Schuster Radial

Hours
Daily 10am-9pm
Phone
316-261-2453 x251

Emard Inc

store · Fort Mohamed

59238 Kozey Track

Hours
Mon-Sat 9am-5pm, Sun 12pm-4pm
Phone
860-305-0164 x0380

Terry Inc

store · Estefaniamouth

3913 Stoltenberg Rest

Hours
Mon-Thu 9am-7pm, Fri-Sat 9am-9pm, Sun Closed
Phone
1-807-843-3471 x17940

Showing first 6 of 24 on this page.

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": 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": "632-725-1297",
      "website": "https://www.gleason-lehner-and-bradtke.com",
      "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-621-712-8860 x489",
      "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": "(372) 513-6732 x8601",
      "website": "https://www.feeney-predovic-and-howe.com",
      "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 →

Draftbit