Harber, Wolf and Reynolds
ethiopian · Providencifurt · $$$$ · ★ 4.5 (706)
96966 Hyatt Inlet
- Phone
- +1 202-555-0102 ext 1
Overview
restaurants / #3
ethiopian · Providencifurt · $$$$ · ★ 4.5 (706)
96966 Hyatt Inlet
Request
curl example
curl -sS \ "https://example-data.com/api/v1/restaurants/3" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/restaurants/3" ); 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/3"
);
const restaurant = (await res.json()) as Restaurant; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/restaurants/3"
)
restaurant = res.json() Response
{
"id": 3,
"name": "Harber, Wolf and Reynolds",
"slug": "harber-wolf-and-reynolds-3",
"cuisine": "ethiopian",
"priceRange": "$$$$",
"rating": 4.5,
"ratingCount": 706,
"countryAlpha2": "DK",
"city": "Providencifurt",
"neighborhood": "Montgomery County",
"address": "96966 Hyatt Inlet",
"phone": "+1 202-555-0102 ext 1",
"website": "https://harber-wolf-and-reynolds-3.example.com",
"hasDelivery": true,
"isOpen": true,
"latitude": 2.014301,
"longitude": 14.07471,
"createdAt": "2024-06-16T05:52:49.627Z",
"updatedAt": "2024-06-16T05:52:49.627Z"
}