Schowalter - McKenzie
thai · Great Falls · $ · ★ 3.7 (760)
6103 Park Crescent
- Phone
- (228) 550-7428
restaurants / #25
thai · Great Falls · $ · ★ 3.7 (760)
6103 Park Crescent
curl -sS \
"https://example-data.com/api/v1/restaurants/25" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/restaurants/25"
);
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/25"
);
const restaurant = (await res.json()) as Restaurant;import requests
res = requests.get(
"https://example-data.com/api/v1/restaurants/25"
)
restaurant = res.json() {
"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": "(228) 550-7428",
"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"
}