restaurants
restaurants
Page 2 of 5.
Overview
-
Schowalter - McKenzie
thai · Great Falls
★ 3.7 (760) · $
-
Auer, Franey and Nicolas
american · Lake Kacey
★ 4.1 (1217) · $$$$
-
Mohr, Treutel and Watsica
french · East Felipa
★ 4.6 (2266) · $$$$
-
Lesch - Stehr
american · New Winona
★ 4.3 (2305) · $
-
Trantow - Jerde
thai · Zaneberg
★ 2.7 (830) · $$
-
Mills, Kassulke and Marquardt
vietnamese · Jeffersonville
★ 3.6 (1380) · $$$
-
Schoen, Cole and Bauch
ethiopian · Thompsonberg
★ 3.1 (2855) · $$
-
Walker - Botsford
chinese · Zulaufburgh
★ 3.7 (2173) · $$$$
-
McGlynn, Bosco and Gusikowski
american · Altadena
★ 3.8 (2770) · $
-
D'Amore, Quitzon and Satterfield
american · Bruenberg
★ 4.6 (2873) · $$$
-
Larson Group
ethiopian · Lehnerville
★ 2.9 (2553) · $$$$
-
Mayert LLC
mediterranean · Darianaburgh
★ 4.4 (230) · $$
-
Cummings and Sons
japanese · Rodriguezville
★ 3.5 (2681) · $$$
-
Hartmann, Dach and Kub
korean · Gusikowskifield
★ 4.2 (150) · $
-
Stroman - Wolf
thai · Hoboken
★ 3.7 (165) · $$
-
Hudson - Lueilwitz
vietnamese · South Lesliefurt
★ 4.9 (306) · $
-
Franey, Volkman and Kutch
mexican · Piercecester
★ 3.5 (2767) · $$$$
-
Braun and Sons
japanese · Deckowland
★ 3.6 (1815) · $$$
-
Brown - Johnson
mexican · West Bernie
★ 3.3 (1012) · $$$
-
Gulgowski, Terry and Funk
mexican · North Stephaniefort
★ 4.9 (2495) · $$$$
-
Simonis - Kshlerin
thai · Stanleybury
★ 2.8 (488) · $
-
Hegmann - Daugherty
thai · Dulcestad
★ 4.6 (1544) · $
-
Pouros, O'Reilly and Block
korean · Lake Chandler
★ 3.5 (1385) · $
-
Macejkovic - Lehner
vietnamese · Petertown
★ 4.3 (717) · $$$$
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": 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": "+1 202-555-0124 ext 1",
"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": "+1 202-555-0125 ext 1",
"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": "+1 202-555-0126 ext 1",
"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&limit=24",
"first": "/api/v1/restaurants?page=1&limit=24",
"last": "/api/v1/restaurants?page=5&limit=24",
"next": "/api/v1/restaurants?page=3&limit=24",
"prev": "/api/v1/restaurants?page=1&limit=24"
}
}