Glover, Hoppe and Quigley
italian · Reynoldscester · $ · ★ 3.8 (707)
26196 Harvey Hills
- Phone
- (845) 549-6681
restaurants / #75
italian · Reynoldscester · $ · ★ 3.8 (707)
26196 Harvey Hills
curl -sS \
"https://example-data.com/api/v1/restaurants/75" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/restaurants/75"
);
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/75"
);
const restaurant = (await res.json()) as Restaurant;import requests
res = requests.get(
"https://example-data.com/api/v1/restaurants/75"
)
restaurant = res.json() {
"id": 75,
"name": "Glover, Hoppe and Quigley",
"slug": "glover-hoppe-and-quigley-75",
"cuisine": "italian",
"priceRange": "$",
"rating": 3.8,
"ratingCount": 707,
"countryAlpha2": "ET",
"city": "Reynoldscester",
"neighborhood": "Washington County",
"address": "26196 Harvey Hills",
"phone": "(845) 549-6681",
"website": null,
"hasDelivery": false,
"isOpen": true,
"latitude": -36.364666,
"longitude": -86.207307,
"createdAt": "2024-06-24T18:31:05.509Z",
"updatedAt": "2024-06-24T18:31:05.509Z"
}