Hartmann, Dach and Kub
korean · Gusikowskifield · $ · ★ 4.2 (150)
7590 Oak Road
- Phone
- +1 202-555-0137 ext 1
Overview
restaurants / #38
korean · Gusikowskifield · $ · ★ 4.2 (150)
7590 Oak Road
Request
curl example
curl -sS \ "https://example-data.com/api/v1/restaurants/38" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/restaurants/38" ); 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/38"
);
const restaurant = (await res.json()) as Restaurant; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/restaurants/38"
)
restaurant = res.json() Response
{
"id": 38,
"name": "Hartmann, Dach and Kub",
"slug": "hartmann-dach-and-kub-38",
"cuisine": "korean",
"priceRange": "$",
"rating": 4.2,
"ratingCount": 150,
"countryAlpha2": "ES",
"city": "Gusikowskifield",
"neighborhood": "Avon",
"address": "7590 Oak Road",
"phone": "+1 202-555-0137 ext 1",
"website": "https://hartmann-dach-and-kub-38.example.com",
"hasDelivery": true,
"isOpen": true,
"latitude": -36.232636,
"longitude": -44.963046,
"createdAt": "2024-06-01T14:38:00.612Z",
"updatedAt": "2024-06-01T14:38:00.612Z"
}