Medhurst, Effertz and Brown
italian · Franeckiburgh · $$$$ · ★ 3.2 (389)
3922 Hawthorn Close
- Phone
- (317) 822-5899
restaurants / #78
italian · Franeckiburgh · $$$$ · ★ 3.2 (389)
3922 Hawthorn Close
curl -sS \
"https://example-data.com/api/v1/restaurants/78" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/restaurants/78"
);
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/78"
);
const restaurant = (await res.json()) as Restaurant;import requests
res = requests.get(
"https://example-data.com/api/v1/restaurants/78"
)
restaurant = res.json() {
"id": 78,
"name": "Medhurst, Effertz and Brown",
"slug": "medhurst-effertz-and-brown-78",
"cuisine": "italian",
"priceRange": "$$$$",
"rating": 3.2,
"ratingCount": 389,
"countryAlpha2": "NG",
"city": "Franeckiburgh",
"neighborhood": "County Londonderry",
"address": "3922 Hawthorn Close",
"phone": "(317) 822-5899",
"website": null,
"hasDelivery": false,
"isOpen": true,
"latitude": 7.398285,
"longitude": 126.313715,
"createdAt": "2026-01-25T11:50:30.373Z",
"updatedAt": "2026-01-25T11:50:30.373Z"
}