restaurants
restaurants
Page 3 of 5.
Overview
-
Bartoletti LLC
french · Shannychester
★ 3.3 (2556) · $$$$
-
Rodriguez, Nicolas and Schneider
mediterranean · New Anthony
★ 4.9 (257) · $$
-
Hamill, Flatley and Pfeffer
mediterranean · North Trevacester
★ 4.3 (2119) · $$$
-
Bartell, Brakus and Schamberger
japanese · New Terrytown
★ 3.3 (2649) · $$
-
Heathcote Inc
mexican · Schmidtfield
★ 2.7 (2278) · $
-
Marks Inc
korean · East Dena
★ 4.1 (510) · $$
-
Koelpin - Lueilwitz
chinese · Salem
★ 2.7 (1522) · $$$
-
Murazik - Goodwin
italian · Haneborough
★ 3.2 (2289) · $$$
-
Ferry LLC
thai · South Gilbertoton
★ 3.8 (763) · $
-
Johns - Adams
indian · Bradleyburgh
★ 2.6 (96) · $$$
-
Blanda and Sons
thai · New Odashire
★ 4.1 (2682) · $$
-
King - Aufderhar
american · Barnstable Town
★ 4.8 (2218) · $
-
Gleichner - Kunde
french · New Itzel
★ 4.9 (2791) · $
-
Douglas Group
thai · New Cletastead
★ 3.3 (566) · $$$
-
Gerhold - Dietrich
japanese · North Joshua
★ 4.9 (2432) · $$$$
-
Hills Group
american · North Jaylincester
★ 2.5 (2251) · $$
-
Goldner - Labadie
thai · Kylechester
★ 3.3 (2121) · $$
-
Bergstrom LLC
korean · South Gate
★ 3.0 (302) · $
-
Huel, Stark and Zulauf
mexican · Zoiemouth
★ 2.7 (2018) · $$$
-
Hayes - McDermott
korean · Lake Tanya
★ 2.5 (2988) · $$$
-
Armstrong - Rau
indian · Uptonshire
★ 3.9 (2280) · $
-
Parisian and Sons
japanese · New Timmothy
★ 3.9 (2382) · $
-
Gislason Group
mediterranean · Marinafield
★ 3.2 (944) · $$$$
-
Schamberger LLC
ethiopian · Walshville
★ 4.1 (1798) · $$$$
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": 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": "+1 202-555-0148 ext 1",
"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": "+1 202-555-0149 ext 1",
"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": "+1 202-555-0150 ext 1",
"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&limit=24",
"first": "/api/v1/restaurants?page=1&limit=24",
"last": "/api/v1/restaurants?page=5&limit=24",
"next": "/api/v1/restaurants?page=4&limit=24",
"prev": "/api/v1/restaurants?page=2&limit=24"
}
}