restaurants
restaurants
Page 4 of 5.
Overview
-
Hauck, Larson and West
chinese · Port Shayna
★ 4.4 (2362) · $$$
-
Schoen, Rice and Koss
japanese · South Danielabury
★ 3.6 (815) · $$$
-
Glover, Hoppe and Quigley
italian · Reynoldscester
★ 3.8 (707) · $
-
Grimes, Durgan and Grady
korean · Fort Estelfield
★ 4.0 (2013) · $$$
-
Jaskolski LLC
korean · East Elmira
★ 4.1 (2892) · $
-
Medhurst, Effertz and Brown
italian · Franeckiburgh
★ 3.2 (389) · $$$$
-
Howe, Kunde and Ortiz
italian · Rosemead
★ 4.9 (2355) · $$$$
-
Heathcote Group
indian · New Eduardoboro
★ 4.0 (2315) · $$
-
Adams - Schimmel
japanese · Murrayburgh
★ 2.7 (2170) · $$$
-
Rogahn - Kreiger
thai · South Cathrynside
★ 4.6 (470) · $$$$
-
Roob - Fisher
thai · Kuhlmanshire
★ 3.2 (254) · $
-
Price LLC
italian · Aspen Hill
★ 2.9 (556) · $
-
Ritchie - Rowe
american · Trompfort
★ 2.9 (2155) · $$$
-
Schimmel LLC
japanese · Clovis
★ 3.3 (2000) · $$$
-
Spinka, Runolfsdottir and Brown
indian · Costa Mesa
★ 3.1 (1818) · $$$
-
Leffler, Dibbert and Yost
chinese · Boehmcester
★ 4.5 (997) · $$$
-
Weimann, Herzog and Wisoky
thai · Grahamberg
★ 3.2 (1023) · $$$
-
Kertzmann - Boyer
thai · Chicago
★ 4.1 (2778) · $$$$
-
O'Keefe - Cruickshank
korean · Covina
★ 4.8 (2912) · $$$
-
Klocko, Gusikowski and Lockman
ethiopian · Lake Vern
★ 2.9 (2349) · $
-
Lehner - Smith
american · Larkinfurt
★ 3.0 (135) · $$$$
-
Morissette, Pagac and Schamberger
mexican · Fort Anjaliville
★ 4.7 (1117) · $$
-
Welch LLC
japanese · North Brando
★ 4.0 (2718) · $$
-
Effertz, Pagac and Price
korean · Laredo
★ 3.4 (2425) · $$
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": 73,
"name": "Hauck, Larson and West",
"slug": "hauck-larson-and-west-73",
"cuisine": "chinese",
"priceRange": "$$$",
"rating": 4.4,
"ratingCount": 2362,
"countryAlpha2": "VN",
"city": "Port Shayna",
"neighborhood": "Cornwall",
"address": "4924 Stanford Hollow",
"phone": "+1 202-555-0172 ext 1",
"website": null,
"hasDelivery": true,
"isOpen": false,
"latitude": 34.790708,
"longitude": -179.537102,
"createdAt": "2024-11-04T08:23:16.156Z",
"updatedAt": "2024-11-04T08:23:16.156Z"
},
{
"id": 74,
"name": "Schoen, Rice and Koss",
"slug": "schoen-rice-and-koss-74",
"cuisine": "japanese",
"priceRange": "$$$",
"rating": 3.6,
"ratingCount": 815,
"countryAlpha2": "BE",
"city": "South Danielabury",
"neighborhood": "Logan County",
"address": "934 Rosenbaum Shores",
"phone": "+1 202-555-0173 ext 1",
"website": "https://schoen-rice-and-koss-74.example.com",
"hasDelivery": true,
"isOpen": true,
"latitude": -5.015172,
"longitude": -135.306777,
"createdAt": "2024-10-31T20:55:52.558Z",
"updatedAt": "2024-10-31T20:55:52.558Z"
},
{
"id": 75,
"name": "Glover, Hoppe and Quigley",
"slug": "glover-hoppe-and-quigley-75",
"cuisine": "italian",
"priceRange": "$",
"rating": 3.8,
"ratingCount": 707,
"countryAlpha2": "ET",
"city": "Reynoldscester",
"neighborhood": "Washington County",
"address": "26196 Harvey Hills",
"phone": "+1 202-555-0174 ext 1",
"website": null,
"hasDelivery": false,
"isOpen": true,
"latitude": -36.364666,
"longitude": -86.207307,
"createdAt": "2024-06-24T18:31:05.509Z",
"updatedAt": "2024-06-24T18:31:05.509Z"
}
],
"meta": {
"page": 4,
"limit": 24,
"total": 100,
"totalPages": 5
},
"links": {
"self": "/api/v1/restaurants?page=4&limit=24",
"first": "/api/v1/restaurants?page=1&limit=24",
"last": "/api/v1/restaurants?page=5&limit=24",
"next": "/api/v1/restaurants?page=5&limit=24",
"prev": "/api/v1/restaurants?page=3&limit=24"
}
}