example-data.com

restaurants

restaurants

Browse 100 restaurants records. Free mock data API by Draftbit — fetch over REST or browse paginated HTML.

Robel, Walter and Davis

ethiopian · Honolulu · $$ · ★ 4.4 (119)

429 The Paddocks

Phone
(512) 782-3736

McKenzie - Toy

chinese · Hattiesburg · $$ · ★ 2.8 (2914)

87815 Manor Road

Phone
(592) 315-7378

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": 1,
      "name": "O'Hara and Sons",
      "slug": "o-hara-and-sons-1",
      "cuisine": "mediterranean",
      "priceRange": "$",
      "rating": 4.4,
      "ratingCount": 2759,
      "countryAlpha2": "NZ",
      "city": "New Eloisaboro",
      "neighborhood": "Hamilton County",
      "address": "96634 Ursula Forks",
      "phone": "(668) 959-4852",
      "website": "https://o-hara-and-sons-1.example.com",
      "hasDelivery": false,
      "isOpen": false,
      "latitude": 24.816431,
      "longitude": -126.109296,
      "createdAt": "2025-11-16T06:33:21.422Z",
      "updatedAt": "2025-11-16T06:33:21.422Z"
    },
    {
      "id": 2,
      "name": "Robel, Walter and Davis",
      "slug": "robel-walter-and-davis-2",
      "cuisine": "ethiopian",
      "priceRange": "$$",
      "rating": 4.4,
      "ratingCount": 119,
      "countryAlpha2": "SG",
      "city": "Honolulu",
      "neighborhood": "Crawford County",
      "address": "429 The Paddocks",
      "phone": "(512) 782-3736",
      "website": null,
      "hasDelivery": false,
      "isOpen": true,
      "latitude": -30.131042,
      "longitude": 176.976735,
      "createdAt": "2024-10-22T12:28:05.480Z",
      "updatedAt": "2024-10-22T12:28:05.480Z"
    },
    {
      "id": 3,
      "name": "Harber, Wolf and Reynolds",
      "slug": "harber-wolf-and-reynolds-3",
      "cuisine": "ethiopian",
      "priceRange": "$$$$",
      "rating": 4.5,
      "ratingCount": 706,
      "countryAlpha2": "DK",
      "city": "Providencifurt",
      "neighborhood": "Montgomery County",
      "address": "96966 Hyatt Inlet",
      "phone": "(512) 272-9183",
      "website": "https://harber-wolf-and-reynolds-3.example.com",
      "hasDelivery": true,
      "isOpen": true,
      "latitude": 2.014301,
      "longitude": 14.07471,
      "createdAt": "2024-06-16T05:52:49.627Z",
      "updatedAt": "2024-06-16T05:52:49.627Z"
    }
  ],
  "meta": {
    "page": 1,
    "limit": 25,
    "total": 100,
    "totalPages": 4
  },
  "links": {
    "self": "/api/v1/restaurants?page=1",
    "first": "/api/v1/restaurants?page=1",
    "last": "/api/v1/restaurants?page=4",
    "next": "/api/v1/restaurants?page=2",
    "prev": null
  }
}

View full response →

Draftbit