D'Amore, Quitzon and Satterfield
american · Bruenberg · $$$ · ★ 4.6 (2873)
487 Adan Shores
- Phone
- +1 202-555-0133 ext 1
Overview
restaurants / #34
american · Bruenberg · $$$ · ★ 4.6 (2873)
487 Adan Shores
Request
curl example
curl -sS \ "https://example-data.com/api/v1/restaurants/34" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/restaurants/34" ); 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/34"
);
const restaurant = (await res.json()) as Restaurant; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/restaurants/34"
)
restaurant = res.json() Response
{
"id": 34,
"name": "D'Amore, Quitzon and Satterfield",
"slug": "d-amore-quitzon-and-satterfield-34",
"cuisine": "american",
"priceRange": "$$$",
"rating": 4.6,
"ratingCount": 2873,
"countryAlpha2": "CN",
"city": "Bruenberg",
"neighborhood": "Lee County",
"address": "487 Adan Shores",
"phone": "+1 202-555-0133 ext 1",
"website": "https://d-amore-quitzon-and-satterfield-34.example.com",
"hasDelivery": false,
"isOpen": true,
"latitude": -42.171115,
"longitude": -24.131715,
"createdAt": "2026-04-08T09:06:42.783Z",
"updatedAt": "2026-04-08T09:06:42.783Z"
}