Mohr - Harvey
vietnamese · South Kayachester · $ · ★ 4.8 (447)
27592 Parisian Freeway
- Phone
- (297) 277-7352
restaurants / #16
vietnamese · South Kayachester · $ · ★ 4.8 (447)
27592 Parisian Freeway
curl -sS \
"https://example-data.com/api/v1/restaurants/16" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/restaurants/16"
);
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/16"
);
const restaurant = (await res.json()) as Restaurant;import requests
res = requests.get(
"https://example-data.com/api/v1/restaurants/16"
)
restaurant = res.json() {
"id": 16,
"name": "Mohr - Harvey",
"slug": "mohr-harvey-16",
"cuisine": "vietnamese",
"priceRange": "$",
"rating": 4.8,
"ratingCount": 447,
"countryAlpha2": "ET",
"city": "South Kayachester",
"neighborhood": "Lancashire",
"address": "27592 Parisian Freeway",
"phone": "(297) 277-7352",
"website": null,
"hasDelivery": true,
"isOpen": true,
"latitude": -34.756237,
"longitude": -43.551071,
"createdAt": "2025-08-21T08:00:33.133Z",
"updatedAt": "2025-08-21T08:00:33.133Z"
}