example-data.com

restaurants

restaurants

Page 4 of 5.

Hauck, Larson and West

chinese · Port Shayna · $$$ · ★ 4.4 (2362)

4924 Stanford Hollow

Phone
(210) 712-9303

Glover, Hoppe and Quigley

italian · Reynoldscester · $ · ★ 3.8 (707)

26196 Harvey Hills

Phone
(845) 549-6681

Jaskolski LLC

korean · East Elmira · $ · ★ 4.1 (2892)

68882 Western Road

Phone
(351) 671-3471

Medhurst, Effertz and Brown

italian · Franeckiburgh · $$$$ · ★ 3.2 (389)

3922 Hawthorn Close

Phone
(317) 822-5899

Showing first 6 of 24 on this page.

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": 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": "(210) 712-9303",
      "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": "(476) 965-8833",
      "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": "(845) 549-6681",
      "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",
    "next": "/api/v1/restaurants?page=5",
    "prev": "/api/v1/restaurants?page=3"
  }
}
Draftbit