Lehner - Smith
american · Larkinfurt · $$$$ · ★ 3.0 (135)
739 Broad Lane
- Phone
- +1 202-555-0192 ext 1
Overview
restaurants / #93
american · Larkinfurt · $$$$ · ★ 3.0 (135)
739 Broad Lane
Request
curl example
curl -sS \ "https://example-data.com/api/v1/restaurants/93" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/restaurants/93" ); 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/93"
);
const restaurant = (await res.json()) as Restaurant; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/restaurants/93"
)
restaurant = res.json() Response
{
"id": 93,
"name": "Lehner - Smith",
"slug": "lehner-smith-93",
"cuisine": "american",
"priceRange": "$$$$",
"rating": 3,
"ratingCount": 135,
"countryAlpha2": "IE",
"city": "Larkinfurt",
"neighborhood": "Crawford County",
"address": "739 Broad Lane",
"phone": "+1 202-555-0192 ext 1",
"website": null,
"hasDelivery": true,
"isOpen": true,
"latitude": -27.379943,
"longitude": -81.02339,
"createdAt": "2025-09-29T12:15:34.188Z",
"updatedAt": "2025-09-29T12:15:34.188Z"
}