Auer, Franey and Nicolas
american · Lake Kacey · $$$$ · ★ 4.1 (1217)
68321 Jakubowski Land
- Phone
- +1 202-555-0125 ext 1
Overview
restaurants / #26
american · Lake Kacey · $$$$ · ★ 4.1 (1217)
68321 Jakubowski Land
Request
curl example
curl -sS \ "https://example-data.com/api/v1/restaurants/26" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/restaurants/26" ); 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/26"
);
const restaurant = (await res.json()) as Restaurant; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/restaurants/26"
)
restaurant = res.json() Response
{
"id": 26,
"name": "Auer, Franey and Nicolas",
"slug": "auer-franey-and-nicolas-26",
"cuisine": "american",
"priceRange": "$$$$",
"rating": 4.1,
"ratingCount": 1217,
"countryAlpha2": "CN",
"city": "Lake Kacey",
"neighborhood": "Somerset",
"address": "68321 Jakubowski Land",
"phone": "+1 202-555-0125 ext 1",
"website": null,
"hasDelivery": true,
"isOpen": true,
"latitude": 2.258459,
"longitude": -82.294269,
"createdAt": "2025-11-06T10:26:04.251Z",
"updatedAt": "2025-11-06T10:26:04.251Z"
}