Leffler, Dibbert and Yost
chinese · Boehmcester · $$$ · ★ 4.5 (997)
554 Remington Plain
- Phone
- (418) 778-0445
restaurants / #88
chinese · Boehmcester · $$$ · ★ 4.5 (997)
554 Remington Plain
curl -sS \
"https://example-data.com/api/v1/restaurants/88" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/restaurants/88"
);
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/88"
);
const restaurant = (await res.json()) as Restaurant;import requests
res = requests.get(
"https://example-data.com/api/v1/restaurants/88"
)
restaurant = res.json() {
"id": 88,
"name": "Leffler, Dibbert and Yost",
"slug": "leffler-dibbert-and-yost-88",
"cuisine": "chinese",
"priceRange": "$$$",
"rating": 4.5,
"ratingCount": 997,
"countryAlpha2": "ET",
"city": "Boehmcester",
"neighborhood": "Strathclyde",
"address": "554 Remington Plain",
"phone": "(418) 778-0445",
"website": null,
"hasDelivery": true,
"isOpen": true,
"latitude": 36.511375,
"longitude": 33.531385,
"createdAt": "2025-01-18T22:09:30.088Z",
"updatedAt": "2025-01-18T22:09:30.088Z"
}