example-data.com
Menu
Browse docs and collections

Overview

restaurants / #33

McGlynn, Bosco and Gusikowski

american · Altadena · $ · ★ 3.8 (2770)

906 Homenick Circle

Phone
+1 202-555-0132 ext 1

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 33,
  "name": "McGlynn, Bosco and Gusikowski",
  "slug": "mcglynn-bosco-and-gusikowski-33",
  "cuisine": "american",
  "priceRange": "$",
  "rating": 3.8,
  "ratingCount": 2770,
  "countryAlpha2": "KE",
  "city": "Altadena",
  "neighborhood": "Durham",
  "address": "906 Homenick Circle",
  "phone": "+1 202-555-0132 ext 1",
  "website": null,
  "hasDelivery": false,
  "isOpen": true,
  "latitude": 36.396651,
  "longitude": 32.845506,
  "createdAt": "2024-08-16T00:06:17.954Z",
  "updatedAt": "2024-08-16T00:06:17.954Z"
}