Schoen, Cole and Bauch
ethiopian · Thompsonberg · $$ · ★ 3.1 (2855)
996 School Street
- Phone
- (507) 451-6571
restaurants / #31
ethiopian · Thompsonberg · $$ · ★ 3.1 (2855)
996 School Street
curl -sS \
"https://example-data.com/api/v1/restaurants/31" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/restaurants/31"
);
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/31"
);
const restaurant = (await res.json()) as Restaurant;import requests
res = requests.get(
"https://example-data.com/api/v1/restaurants/31"
)
restaurant = res.json() {
"id": 31,
"name": "Schoen, Cole and Bauch",
"slug": "schoen-cole-and-bauch-31",
"cuisine": "ethiopian",
"priceRange": "$$",
"rating": 3.1,
"ratingCount": 2855,
"countryAlpha2": "NZ",
"city": "Thompsonberg",
"neighborhood": "Buckinghamshire",
"address": "996 School Street",
"phone": "(507) 451-6571",
"website": null,
"hasDelivery": true,
"isOpen": true,
"latitude": 23.864719,
"longitude": 170.876077,
"createdAt": "2024-09-02T09:17:01.123Z",
"updatedAt": "2024-09-02T09:17:01.123Z"
}