example-data.com

restaurants / #67

Huel, Stark and Zulauf

mexican · Zoiemouth · $$$ · ★ 2.7 (2018)

6904 Park Drive

Phone
(368) 462-3262

Component variants

Related

curl -sS \
  "https://example-data.com/api/v1/restaurants/67" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/restaurants/67"
);
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/67"
);
const restaurant = (await res.json()) as Restaurant;
import requests

res = requests.get(
    "https://example-data.com/api/v1/restaurants/67"
)
restaurant = res.json()
{
  "id": 67,
  "name": "Huel, Stark and Zulauf",
  "slug": "huel-stark-and-zulauf-67",
  "cuisine": "mexican",
  "priceRange": "$$$",
  "rating": 2.7,
  "ratingCount": 2018,
  "countryAlpha2": "EG",
  "city": "Zoiemouth",
  "neighborhood": "Douglas County",
  "address": "6904 Park Drive",
  "phone": "(368) 462-3262",
  "website": null,
  "hasDelivery": true,
  "isOpen": true,
  "latitude": 57.36815,
  "longitude": -86.106397,
  "createdAt": "2024-12-07T23:40:18.013Z",
  "updatedAt": "2024-12-07T23:40:18.013Z"
}
Draftbit