Thiel and Sons
vietnamese · Shyanneville · $$$ · ★ 4.0 (2817)
13477 Lenna Rapid
- Phone
- +1 202-555-0196 ext 1
Overview
restaurants / #97
vietnamese · Shyanneville · $$$ · ★ 4.0 (2817)
13477 Lenna Rapid
Request
curl example
curl -sS \ "https://example-data.com/api/v1/restaurants/97" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/restaurants/97" ); 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/97"
);
const restaurant = (await res.json()) as Restaurant; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/restaurants/97"
)
restaurant = res.json() Response
{
"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": "+1 202-555-0196 ext 1",
"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"
}