Halvorson - Torp
vietnamese · Tonawanda · $$$$ · ★ 3.3 (762)
152 Kirsten Crescent
- Phone
- (421) 560-7110
restaurants / #18
vietnamese · Tonawanda · $$$$ · ★ 3.3 (762)
152 Kirsten Crescent
curl -sS \
"https://example-data.com/api/v1/restaurants/18" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/restaurants/18"
);
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/18"
);
const restaurant = (await res.json()) as Restaurant;import requests
res = requests.get(
"https://example-data.com/api/v1/restaurants/18"
)
restaurant = res.json() {
"id": 18,
"name": "Halvorson - Torp",
"slug": "halvorson-torp-18",
"cuisine": "vietnamese",
"priceRange": "$$$$",
"rating": 3.3,
"ratingCount": 762,
"countryAlpha2": "GR",
"city": "Tonawanda",
"neighborhood": "Derbyshire",
"address": "152 Kirsten Crescent",
"phone": "(421) 560-7110",
"website": "https://halvorson-torp-18.example.com",
"hasDelivery": true,
"isOpen": true,
"latitude": 16.625279,
"longitude": 85.272556,
"createdAt": "2024-10-12T06:39:37.011Z",
"updatedAt": "2024-10-12T06:39:37.011Z"
}