example-data.com

restaurants

restaurants

Page 3 of 5.

Bartell, Brakus and Schamberger

japanese · New Terrytown · $$ · ★ 3.3 (2649)

8371 Rodriguez Haven

Phone
(723) 838-3812

Heathcote Inc

mexican · Schmidtfield · $ · ★ 2.7 (2278)

36638 Park Road

Phone
(381) 989-9775

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": 49,
      "name": "Bartoletti LLC",
      "slug": "bartoletti-llc-49",
      "cuisine": "french",
      "priceRange": "$$$$",
      "rating": 3.3,
      "ratingCount": 2556,
      "countryAlpha2": "JP",
      "city": "Shannychester",
      "neighborhood": "Mid Glamorgan",
      "address": "57683 Adams Falls",
      "phone": "(761) 899-0431",
      "website": "https://bartoletti-llc-49.example.com",
      "hasDelivery": false,
      "isOpen": true,
      "latitude": 15.596188,
      "longitude": 66.49699,
      "createdAt": "2025-12-04T02:00:17.235Z",
      "updatedAt": "2025-12-04T02:00:17.235Z"
    },
    {
      "id": 50,
      "name": "Rodriguez, Nicolas and Schneider",
      "slug": "rodriguez-nicolas-and-schneider-50",
      "cuisine": "mediterranean",
      "priceRange": "$$",
      "rating": 4.9,
      "ratingCount": 257,
      "countryAlpha2": "GR",
      "city": "New Anthony",
      "neighborhood": "Scott County",
      "address": "45178 Huels Overpass",
      "phone": "(502) 392-0420",
      "website": "https://rodriguez-nicolas-and-schneider-50.example.com",
      "hasDelivery": true,
      "isOpen": true,
      "latitude": -42.886461,
      "longitude": -173.766201,
      "createdAt": "2026-01-04T12:56:53.873Z",
      "updatedAt": "2026-01-04T12:56:53.873Z"
    },
    {
      "id": 51,
      "name": "Hamill, Flatley and Pfeffer",
      "slug": "hamill-flatley-and-pfeffer-51",
      "cuisine": "mediterranean",
      "priceRange": "$$$",
      "rating": 4.3,
      "ratingCount": 2119,
      "countryAlpha2": "MA",
      "city": "North Trevacester",
      "neighborhood": "Isle of Wight",
      "address": "43278 Watson Road",
      "phone": "(416) 786-3340",
      "website": "https://hamill-flatley-and-pfeffer-51.example.com",
      "hasDelivery": true,
      "isOpen": true,
      "latitude": -34.536401,
      "longitude": -32.938148,
      "createdAt": "2025-07-28T12:32:37.372Z",
      "updatedAt": "2025-07-28T12:32:37.372Z"
    }
  ],
  "meta": {
    "page": 3,
    "limit": 24,
    "total": 100,
    "totalPages": 5
  },
  "links": {
    "self": "/api/v1/restaurants?page=3",
    "next": "/api/v1/restaurants?page=4",
    "prev": "/api/v1/restaurants?page=2"
  }
}
Draftbit