McDermott - Metz
vietnamese · East Darlene · $$ · ★ 2.7 (362)
6851 Schimmel Well
- Phone
- +1 202-555-0105 ext 1
Overview
restaurants / #6
vietnamese · East Darlene · $$ · ★ 2.7 (362)
6851 Schimmel Well
Request
curl example
curl -sS \ "https://example-data.com/api/v1/restaurants/6" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/restaurants/6" ); 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/6"
);
const restaurant = (await res.json()) as Restaurant; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/restaurants/6"
)
restaurant = res.json() Response
{
"id": 6,
"name": "McDermott - Metz",
"slug": "mcdermott-metz-6",
"cuisine": "vietnamese",
"priceRange": "$$",
"rating": 2.7,
"ratingCount": 362,
"countryAlpha2": "SA",
"city": "East Darlene",
"neighborhood": "Clwyd",
"address": "6851 Schimmel Well",
"phone": "+1 202-555-0105 ext 1",
"website": "https://mcdermott-metz-6.example.com",
"hasDelivery": true,
"isOpen": false,
"latitude": 16.249238,
"longitude": 8.476523,
"createdAt": "2024-08-28T10:40:56.527Z",
"updatedAt": "2024-08-28T10:40:56.527Z"
}