Hegmann - Daugherty
thai · Dulcestad · $ · ★ 4.6 (1544)
1739 Orland View
- Phone
- +1 202-555-0145 ext 1
Overview
restaurants / #46
thai · Dulcestad · $ · ★ 4.6 (1544)
1739 Orland View
Request
curl example
curl -sS \ "https://example-data.com/api/v1/restaurants/46" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/restaurants/46" ); 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/46"
);
const restaurant = (await res.json()) as Restaurant; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/restaurants/46"
)
restaurant = res.json() Response
{
"id": 46,
"name": "Hegmann - Daugherty",
"slug": "hegmann-daugherty-46",
"cuisine": "thai",
"priceRange": "$",
"rating": 4.6,
"ratingCount": 1544,
"countryAlpha2": "IT",
"city": "Dulcestad",
"neighborhood": "Johnson County",
"address": "1739 Orland View",
"phone": "+1 202-555-0145 ext 1",
"website": null,
"hasDelivery": true,
"isOpen": true,
"latitude": -27.352982,
"longitude": 21.158722,
"createdAt": "2025-10-02T15:47:28.639Z",
"updatedAt": "2025-10-02T15:47:28.639Z"
}