example-data.com

restaurants

restaurants

Page 2 of 5.

Schowalter - McKenzie

thai · Great Falls · $ · ★ 3.7 (760)

6103 Park Crescent

Phone
(228) 550-7428

Auer, Franey and Nicolas

american · Lake Kacey · $$$$ · ★ 4.1 (1217)

68321 Jakubowski Land

Phone
(833) 499-3411

Mohr, Treutel and Watsica

french · East Felipa · $$$$ · ★ 4.6 (2266)

7233 E Park Avenue

Phone
(660) 718-4536

Showing first 6 of 24 on this page.

curl -sS \
  "https://example-data.com/api/v1/restaurants?limit=25"
const res = await fetch(
  "https://example-data.com/api/v1/restaurants?limit=25"
);
const { data, meta } = await res.json();
import type { Restaurant, ListEnvelope } from "https://example-data.com/types/restaurants.d.ts";

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

res = requests.get(
    "https://example-data.com/api/v1/restaurants",
    params={"limit": 25},
)
data = res.json()
{
  "data": [
    {
      "id": 25,
      "name": "Schowalter - McKenzie",
      "slug": "schowalter-mckenzie-25",
      "cuisine": "thai",
      "priceRange": "$",
      "rating": 3.7,
      "ratingCount": 760,
      "countryAlpha2": "BE",
      "city": "Great Falls",
      "neighborhood": "Northamptonshire",
      "address": "6103 Park Crescent",
      "phone": "(228) 550-7428",
      "website": null,
      "hasDelivery": true,
      "isOpen": true,
      "latitude": -35.883785,
      "longitude": 55.465554,
      "createdAt": "2026-03-12T07:04:50.920Z",
      "updatedAt": "2026-03-12T07:04:50.920Z"
    },
    {
      "id": 26,
      "name": "Auer, Franey and Nicolas",
      "slug": "auer-franey-and-nicolas-26",
      "cuisine": "american",
      "priceRange": "$$$$",
      "rating": 4.1,
      "ratingCount": 1217,
      "countryAlpha2": "CN",
      "city": "Lake Kacey",
      "neighborhood": "Somerset",
      "address": "68321 Jakubowski Land",
      "phone": "(833) 499-3411",
      "website": null,
      "hasDelivery": true,
      "isOpen": true,
      "latitude": 2.258459,
      "longitude": -82.294269,
      "createdAt": "2025-11-06T10:26:04.251Z",
      "updatedAt": "2025-11-06T10:26:04.251Z"
    },
    {
      "id": 27,
      "name": "Mohr, Treutel and Watsica",
      "slug": "mohr-treutel-and-watsica-27",
      "cuisine": "french",
      "priceRange": "$$$$",
      "rating": 4.6,
      "ratingCount": 2266,
      "countryAlpha2": "AU",
      "city": "East Felipa",
      "neighborhood": "Jefferson County",
      "address": "7233 E Park Avenue",
      "phone": "(660) 718-4536",
      "website": null,
      "hasDelivery": true,
      "isOpen": true,
      "latitude": -23.865459,
      "longitude": 55.604662,
      "createdAt": "2025-02-21T04:18:12.371Z",
      "updatedAt": "2025-02-21T04:18:12.371Z"
    }
  ],
  "meta": {
    "page": 2,
    "limit": 24,
    "total": 100,
    "totalPages": 5
  },
  "links": {
    "self": "/api/v1/restaurants?page=2",
    "next": "/api/v1/restaurants?page=3",
    "prev": "/api/v1/restaurants?page=1"
  }
}
Draftbit