Lehner - Smith
american · Larkinfurt · $$$$ · ★ 3.0 (135)
739 Broad Lane
- Phone
- (613) 734-0904
restaurants / #93
american · Larkinfurt · $$$$ · ★ 3.0 (135)
739 Broad Lane
curl -sS \
"https://example-data.com/api/v1/restaurants/93" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/restaurants/93"
);
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/93"
);
const restaurant = (await res.json()) as Restaurant;import requests
res = requests.get(
"https://example-data.com/api/v1/restaurants/93"
)
restaurant = res.json() {
"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": "(613) 734-0904",
"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"
}