Mohr, Treutel and Watsica
french · East Felipa · $$$$ · ★ 4.6 (2266)
7233 E Park Avenue
- Phone
- +1 202-555-0126 ext 1
Overview
restaurants / #27
french · East Felipa · $$$$ · ★ 4.6 (2266)
7233 E Park Avenue
Request
curl example
curl -sS \ "https://example-data.com/api/v1/restaurants/27" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/restaurants/27" ); 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/27"
);
const restaurant = (await res.json()) as Restaurant; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/restaurants/27"
)
restaurant = res.json() Response
{
"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": "+1 202-555-0126 ext 1",
"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"
}