restaurants
restaurants
Page 5 of 5.
Overview
Request
curl example
curl -sS \ "https://example-data.com/api/v1/restaurants?limit=25"
JavaScript example
const res = await fetch(
"https://example-data.com/api/v1/restaurants?limit=25"
);
const { data, meta } = await res.json(); TypeScript example
// Download once: mkdir -p types && curl -o types/restaurants.d.ts https://example-data.com/types/restaurants.d.ts
import type { Restaurant, ListEnvelope } from "./types/restaurants";
const res = await fetch(
"https://example-data.com/api/v1/restaurants?limit=25"
);
const { data, meta } = (await res.json()) as ListEnvelope<Restaurant>; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/restaurants",
params={"limit": 25},
)
data = res.json() Response
{
"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": "+1 202-555-0196 ext 1",
"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": "+1 202-555-0197 ext 1",
"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": "+1 202-555-0198 ext 1",
"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&limit=24",
"first": "/api/v1/restaurants?page=1&limit=24",
"last": "/api/v1/restaurants?page=5&limit=24",
"next": null,
"prev": "/api/v1/restaurants?page=4&limit=24"
}
}