Hudson - Lueilwitz
vietnamese · South Lesliefurt · $ · ★ 4.9 (306)
639 Uriel Island
- Phone
- (637) 494-4013
restaurants / #40
vietnamese · South Lesliefurt · $ · ★ 4.9 (306)
639 Uriel Island
curl -sS \
"https://example-data.com/api/v1/restaurants/40" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/restaurants/40"
);
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/40"
);
const restaurant = (await res.json()) as Restaurant;import requests
res = requests.get(
"https://example-data.com/api/v1/restaurants/40"
)
restaurant = res.json() {
"id": 40,
"name": "Hudson - Lueilwitz",
"slug": "hudson-lueilwitz-40",
"cuisine": "vietnamese",
"priceRange": "$",
"rating": 4.9,
"ratingCount": 306,
"countryAlpha2": "IL",
"city": "South Lesliefurt",
"neighborhood": "Avon",
"address": "639 Uriel Island",
"phone": "(637) 494-4013",
"website": null,
"hasDelivery": true,
"isOpen": true,
"latitude": 23.896891,
"longitude": 71.939266,
"createdAt": "2025-05-23T09:09:22.530Z",
"updatedAt": "2025-05-23T09:09:22.530Z"
}