example-data.com

restaurants

restaurants

Page 5 of 5.

Thiel and Sons

vietnamese · Shyanneville · $$$ · ★ 4.0 (2817)

13477 Lenna Rapid

Phone
(775) 277-2189

Aufderhar - Johns

indian · East Lorenside · $$$$ · ★ 4.5 (404)

15989 O'Conner Bridge

Phone
(903) 509-1203

Walsh LLC

thai · Predovicville · $$$$ · ★ 4.8 (2126)

4324 Mary Street

Phone
(341) 455-1073
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": 97,
      "name": "Thiel and Sons",
      "slug": "thiel-and-sons-97",
      "cuisine": "vietnamese",
      "priceRange": "$$$",
      "rating": 4,
      "ratingCount": 2817,
      "countryAlpha2": "SA",
      "city": "Shyanneville",
      "neighborhood": "West Sussex",
      "address": "13477 Lenna Rapid",
      "phone": "(775) 277-2189",
      "website": null,
      "hasDelivery": true,
      "isOpen": true,
      "latitude": 56.877804,
      "longitude": 97.419921,
      "createdAt": "2025-09-06T05:33:26.035Z",
      "updatedAt": "2025-09-06T05:33:26.035Z"
    },
    {
      "id": 98,
      "name": "Aufderhar - Johns",
      "slug": "aufderhar-johns-98",
      "cuisine": "indian",
      "priceRange": "$$$$",
      "rating": 4.5,
      "ratingCount": 404,
      "countryAlpha2": "PL",
      "city": "East Lorenside",
      "neighborhood": "Staffordshire",
      "address": "15989 O'Conner Bridge",
      "phone": "(903) 509-1203",
      "website": null,
      "hasDelivery": true,
      "isOpen": true,
      "latitude": -42.551374,
      "longitude": -63.166326,
      "createdAt": "2025-04-02T03:04:30.195Z",
      "updatedAt": "2025-04-02T03:04:30.195Z"
    },
    {
      "id": 99,
      "name": "Haley, Denesik and Walker",
      "slug": "haley-denesik-and-walker-99",
      "cuisine": "chinese",
      "priceRange": "$",
      "rating": 3.3,
      "ratingCount": 2710,
      "countryAlpha2": "DK",
      "city": "Port Chloe",
      "neighborhood": "Cleveland",
      "address": "813 Geraldine Run",
      "phone": "(922) 501-0460",
      "website": "https://haley-denesik-and-walker-99.example.com",
      "hasDelivery": true,
      "isOpen": true,
      "latitude": 36.943675,
      "longitude": 158.453849,
      "createdAt": "2025-05-13T03:31:01.461Z",
      "updatedAt": "2025-05-13T03:31:01.461Z"
    }
  ],
  "meta": {
    "page": 5,
    "limit": 24,
    "total": 100,
    "totalPages": 5
  },
  "links": {
    "self": "/api/v1/restaurants?page=5",
    "next": null,
    "prev": "/api/v1/restaurants?page=4"
  }
}
Draftbit