Gerhold - Dietrich
japanese · North Joshua · $$$$ · ★ 4.9 (2432)
13216 State Avenue
- Phone
- (213) 616-4716
restaurants / #63
japanese · North Joshua · $$$$ · ★ 4.9 (2432)
13216 State Avenue
curl -sS \
"https://example-data.com/api/v1/restaurants/63" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/restaurants/63"
);
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/63"
);
const restaurant = (await res.json()) as Restaurant;import requests
res = requests.get(
"https://example-data.com/api/v1/restaurants/63"
)
restaurant = res.json() {
"id": 63,
"name": "Gerhold - Dietrich",
"slug": "gerhold-dietrich-63",
"cuisine": "japanese",
"priceRange": "$$$$",
"rating": 4.9,
"ratingCount": 2432,
"countryAlpha2": "IL",
"city": "North Joshua",
"neighborhood": "Scott County",
"address": "13216 State Avenue",
"phone": "(213) 616-4716",
"website": null,
"hasDelivery": false,
"isOpen": false,
"latitude": -12.895812,
"longitude": -161.073783,
"createdAt": "2026-04-20T10:14:33.794Z",
"updatedAt": "2026-04-20T10:14:33.794Z"
}