Bartell, Brakus and Schamberger
japanese · New Terrytown · $$ · ★ 3.3 (2649)
8371 Rodriguez Haven
- Phone
- +1 202-555-0151 ext 1
Overview
restaurants / #52
japanese · New Terrytown · $$ · ★ 3.3 (2649)
8371 Rodriguez Haven
Request
curl example
curl -sS \ "https://example-data.com/api/v1/restaurants/52" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/restaurants/52" ); 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/52"
);
const restaurant = (await res.json()) as Restaurant; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/restaurants/52"
)
restaurant = res.json() Response
{
"id": 52,
"name": "Bartell, Brakus and Schamberger",
"slug": "bartell-brakus-and-schamberger-52",
"cuisine": "japanese",
"priceRange": "$$",
"rating": 3.3,
"ratingCount": 2649,
"countryAlpha2": "AR",
"city": "New Terrytown",
"neighborhood": "Durham",
"address": "8371 Rodriguez Haven",
"phone": "+1 202-555-0151 ext 1",
"website": null,
"hasDelivery": true,
"isOpen": true,
"latitude": -17.725562,
"longitude": -44.438838,
"createdAt": "2026-01-23T03:42:31.260Z",
"updatedAt": "2026-01-23T03:42:31.260Z"
}