example-data.com
Menu
Browse docs and collections

Overview

restaurants / #67

Huel, Stark and Zulauf

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

6904 Park Drive

Phone
+1 202-555-0166 ext 1

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

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