Effertz, Langworth and Walsh
mexican · Lake Maudiehaven · $ · ★ 2.7 (1809)
525 N 3rd Street
- Phone
- +1 202-555-0120 ext 1
Overview
restaurants / #21
mexican · Lake Maudiehaven · $ · ★ 2.7 (1809)
525 N 3rd Street
Request
curl example
curl -sS \ "https://example-data.com/api/v1/restaurants/21" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/restaurants/21" ); const restaurant = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/restaurants.d.ts https://example-data.com/types/restaurants.d.ts
import type { Restaurant } from "./types/restaurants";
const res = await fetch(
"https://example-data.com/api/v1/restaurants/21"
);
const restaurant = (await res.json()) as Restaurant; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/restaurants/21"
)
restaurant = res.json() Response
{
"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": "+1 202-555-0120 ext 1",
"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"
}