Gerhold - Dietrich
japanese · North Joshua · $$$$ · ★ 4.9 (2432)
13216 State Avenue
- Phone
- +1 202-555-0162 ext 1
Overview
restaurants / #63
japanese · North Joshua · $$$$ · ★ 4.9 (2432)
13216 State Avenue
Request
curl example
curl -sS \ "https://example-data.com/api/v1/restaurants/63" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/restaurants/63" ); 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/63"
);
const restaurant = (await res.json()) as Restaurant; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/restaurants/63"
)
restaurant = res.json() Response
{
"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": "+1 202-555-0162 ext 1",
"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"
}