Mohr, Treutel and Watsica
french · East Felipa · $$$$ · ★ 4.6 (2266)
7233 E Park Avenue
- Phone
- (660) 718-4536
restaurants / #27
french · East Felipa · $$$$ · ★ 4.6 (2266)
7233 E Park Avenue
curl -sS \
"https://example-data.com/api/v1/restaurants/27" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/restaurants/27"
);
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/27"
);
const restaurant = (await res.json()) as Restaurant;import requests
res = requests.get(
"https://example-data.com/api/v1/restaurants/27"
)
restaurant = res.json() {
"id": 27,
"name": "Mohr, Treutel and Watsica",
"slug": "mohr-treutel-and-watsica-27",
"cuisine": "french",
"priceRange": "$$$$",
"rating": 4.6,
"ratingCount": 2266,
"countryAlpha2": "AU",
"city": "East Felipa",
"neighborhood": "Jefferson County",
"address": "7233 E Park Avenue",
"phone": "(660) 718-4536",
"website": null,
"hasDelivery": true,
"isOpen": true,
"latitude": -23.865459,
"longitude": 55.604662,
"createdAt": "2025-02-21T04:18:12.371Z",
"updatedAt": "2025-02-21T04:18:12.371Z"
}