Effertz, Langworth and Walsh
mexican · Lake Maudiehaven · $ · ★ 2.7 (1809)
525 N 3rd Street
- Phone
- (578) 285-7904
restaurants / #21
mexican · Lake Maudiehaven · $ · ★ 2.7 (1809)
525 N 3rd Street
curl -sS \
"https://example-data.com/api/v1/restaurants/21" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/restaurants/21"
);
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/21"
);
const restaurant = (await res.json()) as Restaurant;import requests
res = requests.get(
"https://example-data.com/api/v1/restaurants/21"
)
restaurant = res.json() {
"id": 21,
"name": "Effertz, Langworth and Walsh",
"slug": "effertz-langworth-and-walsh-21",
"cuisine": "mexican",
"priceRange": "$",
"rating": 2.7,
"ratingCount": 1809,
"countryAlpha2": "FR",
"city": "Lake Maudiehaven",
"neighborhood": "Washington County",
"address": "525 N 3rd Street",
"phone": "(578) 285-7904",
"website": null,
"hasDelivery": true,
"isOpen": true,
"latitude": 12.871515,
"longitude": -3.828381,
"createdAt": "2024-06-18T23:17:12.544Z",
"updatedAt": "2024-06-18T23:17:12.544Z"
}