Hamill, Flatley and Pfeffer
mediterranean · North Trevacester · $$$ · ★ 4.3 (2119)
43278 Watson Road
- Phone
- (416) 786-3340
restaurants / #51
mediterranean · North Trevacester · $$$ · ★ 4.3 (2119)
43278 Watson Road
curl -sS \
"https://example-data.com/api/v1/restaurants/51" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/restaurants/51"
);
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/51"
);
const restaurant = (await res.json()) as Restaurant;import requests
res = requests.get(
"https://example-data.com/api/v1/restaurants/51"
)
restaurant = res.json() {
"id": 51,
"name": "Hamill, Flatley and Pfeffer",
"slug": "hamill-flatley-and-pfeffer-51",
"cuisine": "mediterranean",
"priceRange": "$$$",
"rating": 4.3,
"ratingCount": 2119,
"countryAlpha2": "MA",
"city": "North Trevacester",
"neighborhood": "Isle of Wight",
"address": "43278 Watson Road",
"phone": "(416) 786-3340",
"website": "https://hamill-flatley-and-pfeffer-51.example.com",
"hasDelivery": true,
"isOpen": true,
"latitude": -34.536401,
"longitude": -32.938148,
"createdAt": "2025-07-28T12:32:37.372Z",
"updatedAt": "2025-07-28T12:32:37.372Z"
}