Weimann, Herzog and Wisoky
thai · Grahamberg · $$$ · ★ 3.2 (1023)
31280 Joey Burg
- Phone
- (421) 265-2871
restaurants / #89
thai · Grahamberg · $$$ · ★ 3.2 (1023)
31280 Joey Burg
curl -sS \
"https://example-data.com/api/v1/restaurants/89" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/restaurants/89"
);
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/89"
);
const restaurant = (await res.json()) as Restaurant;import requests
res = requests.get(
"https://example-data.com/api/v1/restaurants/89"
)
restaurant = res.json() {
"id": 89,
"name": "Weimann, Herzog and Wisoky",
"slug": "weimann-herzog-and-wisoky-89",
"cuisine": "thai",
"priceRange": "$$$",
"rating": 3.2,
"ratingCount": 1023,
"countryAlpha2": "KR",
"city": "Grahamberg",
"neighborhood": "Cumbria",
"address": "31280 Joey Burg",
"phone": "(421) 265-2871",
"website": null,
"hasDelivery": true,
"isOpen": true,
"latitude": -10.077446,
"longitude": -72.871538,
"createdAt": "2025-07-31T20:37:05.127Z",
"updatedAt": "2025-07-31T20:37:05.127Z"
}