Thiel and Sons
vietnamese · Shyanneville · $$$ · ★ 4.0 (2817)
13477 Lenna Rapid
- Phone
- (775) 277-2189
restaurants / #97
vietnamese · Shyanneville · $$$ · ★ 4.0 (2817)
13477 Lenna Rapid
curl -sS \
"https://example-data.com/api/v1/restaurants/97" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/restaurants/97"
);
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/97"
);
const restaurant = (await res.json()) as Restaurant;import requests
res = requests.get(
"https://example-data.com/api/v1/restaurants/97"
)
restaurant = res.json() {
"id": 97,
"name": "Thiel and Sons",
"slug": "thiel-and-sons-97",
"cuisine": "vietnamese",
"priceRange": "$$$",
"rating": 4,
"ratingCount": 2817,
"countryAlpha2": "SA",
"city": "Shyanneville",
"neighborhood": "West Sussex",
"address": "13477 Lenna Rapid",
"phone": "(775) 277-2189",
"website": null,
"hasDelivery": true,
"isOpen": true,
"latitude": 56.877804,
"longitude": 97.419921,
"createdAt": "2025-09-06T05:33:26.035Z",
"updatedAt": "2025-09-06T05:33:26.035Z"
}