example-data.com
Menu
Browse docs and collections

Overview

restaurants / #2

Robel, Walter and Davis

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

429 The Paddocks

Phone
+1 202-555-0101 ext 1

Component variants

Related

Request

curl example

curl -sS \
  "https://example-data.com/api/v1/restaurants/2" \
  -H "Accept: application/json"

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/restaurants/2"
);
const restaurant = 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 } from "./types/restaurants";

const res = await fetch(
  "https://example-data.com/api/v1/restaurants/2"
);
const restaurant = (await res.json()) as Restaurant;

Python example

import requests

res = requests.get(
    "https://example-data.com/api/v1/restaurants/2"
)
restaurant = res.json()

Response

{
  "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": "+1 202-555-0101 ext 1",
  "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"
}