example-data.com

restaurants / #2

Robel, Walter and Davis

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

429 The Paddocks

Phone
(512) 782-3736

Component variants

Related

curl -sS \
  "https://example-data.com/api/v1/restaurants/2" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/restaurants/2"
);
const restaurant = await res.json();
import type { Restaurant } from "https://example-data.com/types/restaurants.d.ts";

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

res = requests.get(
    "https://example-data.com/api/v1/restaurants/2"
)
restaurant = res.json()
{
  "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"
}
Draftbit