Hegmann - Daugherty
thai · Dulcestad · $ · ★ 4.6 (1544)
1739 Orland View
- Phone
- (275) 478-9399
restaurants / #46
thai · Dulcestad · $ · ★ 4.6 (1544)
1739 Orland View
curl -sS \
"https://example-data.com/api/v1/restaurants/46" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/restaurants/46"
);
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/46"
);
const restaurant = (await res.json()) as Restaurant;import requests
res = requests.get(
"https://example-data.com/api/v1/restaurants/46"
)
restaurant = res.json() {
"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": "(275) 478-9399",
"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"
}