Larson Group
ethiopian · Lehnerville · $$$$ · ★ 2.9 (2553)
66968 Tyrese Club
- Phone
- +1 202-555-0134 ext 1
Overview
restaurants / #35
ethiopian · Lehnerville · $$$$ · ★ 2.9 (2553)
66968 Tyrese Club
Request
curl example
curl -sS \ "https://example-data.com/api/v1/restaurants/35" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/restaurants/35" ); 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/35"
);
const restaurant = (await res.json()) as Restaurant; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/restaurants/35"
)
restaurant = res.json() Response
{
"id": 35,
"name": "Larson Group",
"slug": "larson-group-35",
"cuisine": "ethiopian",
"priceRange": "$$$$",
"rating": 2.9,
"ratingCount": 2553,
"countryAlpha2": "CN",
"city": "Lehnerville",
"neighborhood": "Mid Glamorgan",
"address": "66968 Tyrese Club",
"phone": "+1 202-555-0134 ext 1",
"website": "https://larson-group-35.example.com",
"hasDelivery": false,
"isOpen": true,
"latitude": -11.171933,
"longitude": 98.32577,
"createdAt": "2025-09-15T09:58:41.879Z",
"updatedAt": "2025-09-15T09:58:41.879Z"
}