Kshlerin - Champlin
ethiopian · Marquardtfort · $$$ · ★ 4.4 (1276)
701 Karianne Wall
- Phone
- (384) 914-8598
restaurants / #11
ethiopian · Marquardtfort · $$$ · ★ 4.4 (1276)
701 Karianne Wall
curl -sS \
"https://example-data.com/api/v1/restaurants/11" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/restaurants/11"
);
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/11"
);
const restaurant = (await res.json()) as Restaurant;import requests
res = requests.get(
"https://example-data.com/api/v1/restaurants/11"
)
restaurant = res.json() {
"id": 11,
"name": "Kshlerin - Champlin",
"slug": "kshlerin-champlin-11",
"cuisine": "ethiopian",
"priceRange": "$$$",
"rating": 4.4,
"ratingCount": 1276,
"countryAlpha2": "PL",
"city": "Marquardtfort",
"neighborhood": "Northamptonshire",
"address": "701 Karianne Wall",
"phone": "(384) 914-8598",
"website": null,
"hasDelivery": true,
"isOpen": true,
"latitude": 57.567221,
"longitude": 24.258322,
"createdAt": "2025-04-19T16:36:08.206Z",
"updatedAt": "2025-04-19T16:36:08.206Z"
}