Schowalter - McKenzie
thai · Great Falls · $ · ★ 3.7 (760)
6103 Park Crescent
- Phone
- +1 202-555-0124 ext 1
Overview
restaurants / #25
thai · Great Falls · $ · ★ 3.7 (760)
6103 Park Crescent
Request
curl example
curl -sS \ "https://example-data.com/api/v1/restaurants/25" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/restaurants/25" ); 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/25"
);
const restaurant = (await res.json()) as Restaurant; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/restaurants/25"
)
restaurant = res.json() Response
{
"id": 25,
"name": "Schowalter - McKenzie",
"slug": "schowalter-mckenzie-25",
"cuisine": "thai",
"priceRange": "$",
"rating": 3.7,
"ratingCount": 760,
"countryAlpha2": "BE",
"city": "Great Falls",
"neighborhood": "Northamptonshire",
"address": "6103 Park Crescent",
"phone": "+1 202-555-0124 ext 1",
"website": null,
"hasDelivery": true,
"isOpen": true,
"latitude": -35.883785,
"longitude": 55.465554,
"createdAt": "2026-03-12T07:04:50.920Z",
"updatedAt": "2026-03-12T07:04:50.920Z"
}