Kshlerin - Champlin
ethiopian · Marquardtfort · $$$ · ★ 4.4 (1276)
701 Karianne Wall
- Phone
- +1 202-555-0110 ext 1
Overview
restaurants / #11
ethiopian · Marquardtfort · $$$ · ★ 4.4 (1276)
701 Karianne Wall
Request
curl example
curl -sS \ "https://example-data.com/api/v1/restaurants/11" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/restaurants/11" ); 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/11"
);
const restaurant = (await res.json()) as Restaurant; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/restaurants/11"
)
restaurant = res.json() Response
{
"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": "+1 202-555-0110 ext 1",
"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"
}