Auer, Franey and Nicolas
american · Lake Kacey · $$$$ · ★ 4.1 (1217)
68321 Jakubowski Land
- Phone
- (833) 499-3411
restaurants / #26
american · Lake Kacey · $$$$ · ★ 4.1 (1217)
68321 Jakubowski Land
curl -sS \
"https://example-data.com/api/v1/restaurants/26" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/restaurants/26"
);
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/26"
);
const restaurant = (await res.json()) as Restaurant;import requests
res = requests.get(
"https://example-data.com/api/v1/restaurants/26"
)
restaurant = res.json() {
"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": "(833) 499-3411",
"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"
}