McKenzie - Toy
chinese · Hattiesburg · $$ · ★ 2.8 (2914)
87815 Manor Road
- Phone
- (592) 315-7378
restaurants / #4
chinese · Hattiesburg · $$ · ★ 2.8 (2914)
87815 Manor Road
curl -sS \
"https://example-data.com/api/v1/restaurants/4" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/restaurants/4"
);
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/4"
);
const restaurant = (await res.json()) as Restaurant;import requests
res = requests.get(
"https://example-data.com/api/v1/restaurants/4"
)
restaurant = res.json() {
"id": 4,
"name": "McKenzie - Toy",
"slug": "mckenzie-toy-4",
"cuisine": "chinese",
"priceRange": "$$",
"rating": 2.8,
"ratingCount": 2914,
"countryAlpha2": "CN",
"city": "Hattiesburg",
"neighborhood": "Lee County",
"address": "87815 Manor Road",
"phone": "(592) 315-7378",
"website": null,
"hasDelivery": true,
"isOpen": true,
"latitude": 7.210776,
"longitude": 156.228382,
"createdAt": "2025-12-01T06:18:44.347Z",
"updatedAt": "2025-12-01T06:18:44.347Z"
}