Franey, Volkman and Kutch
mexican · Piercecester · $$$$ · ★ 3.5 (2767)
2392 Okuneva Shores
- Phone
- +1 202-555-0140 ext 1
Overview
restaurants / #41
mexican · Piercecester · $$$$ · ★ 3.5 (2767)
2392 Okuneva Shores
Request
curl example
curl -sS \ "https://example-data.com/api/v1/restaurants/41" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/restaurants/41" ); 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/41"
);
const restaurant = (await res.json()) as Restaurant; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/restaurants/41"
)
restaurant = res.json() Response
{
"id": 41,
"name": "Franey, Volkman and Kutch",
"slug": "franey-volkman-and-kutch-41",
"cuisine": "mexican",
"priceRange": "$$$$",
"rating": 3.5,
"ratingCount": 2767,
"countryAlpha2": "CA",
"city": "Piercecester",
"neighborhood": "Berkshire",
"address": "2392 Okuneva Shores",
"phone": "+1 202-555-0140 ext 1",
"website": "https://franey-volkman-and-kutch-41.example.com",
"hasDelivery": true,
"isOpen": true,
"latitude": -8.685705,
"longitude": 176.600783,
"createdAt": "2025-08-20T13:18:35.421Z",
"updatedAt": "2025-08-20T13:18:35.421Z"
}