example-data.com

restaurants / #52

Bartell, Brakus and Schamberger

japanese · New Terrytown · $$ · ★ 3.3 (2649)

8371 Rodriguez Haven

Phone
(723) 838-3812

Component variants

Related

curl -sS \
  "https://example-data.com/api/v1/restaurants/52" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/restaurants/52"
);
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/52"
);
const restaurant = (await res.json()) as Restaurant;
import requests

res = requests.get(
    "https://example-data.com/api/v1/restaurants/52"
)
restaurant = res.json()
{
  "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": "(723) 838-3812",
  "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"
}
Draftbit