Hayes - McDermott
korean · Lake Tanya · $$$ · ★ 2.5 (2988)
1102 Front Street
- Phone
- +1 202-555-0167 ext 1
Overview
restaurants / #68
korean · Lake Tanya · $$$ · ★ 2.5 (2988)
1102 Front Street
Request
curl example
curl -sS \ "https://example-data.com/api/v1/restaurants/68" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/restaurants/68" ); 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/68"
);
const restaurant = (await res.json()) as Restaurant; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/restaurants/68"
)
restaurant = res.json() Response
{
"id": 68,
"name": "Hayes - McDermott",
"slug": "hayes-mcdermott-68",
"cuisine": "korean",
"priceRange": "$$$",
"rating": 2.5,
"ratingCount": 2988,
"countryAlpha2": "ET",
"city": "Lake Tanya",
"neighborhood": "Somerset",
"address": "1102 Front Street",
"phone": "+1 202-555-0167 ext 1",
"website": null,
"hasDelivery": false,
"isOpen": true,
"latitude": 22.528954,
"longitude": -72.242266,
"createdAt": "2024-08-14T13:58:30.349Z",
"updatedAt": "2024-08-14T13:58:30.349Z"
}