Bartoletti LLC
french · Shannychester · $$$$ · ★ 3.3 (2556)
57683 Adams Falls
- Phone
- +1 202-555-0148 ext 1
Overview
restaurants / #49
french · Shannychester · $$$$ · ★ 3.3 (2556)
57683 Adams Falls
Request
curl example
curl -sS \ "https://example-data.com/api/v1/restaurants/49" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/restaurants/49" ); 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/49"
);
const restaurant = (await res.json()) as Restaurant; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/restaurants/49"
)
restaurant = res.json() Response
{
"id": 49,
"name": "Bartoletti LLC",
"slug": "bartoletti-llc-49",
"cuisine": "french",
"priceRange": "$$$$",
"rating": 3.3,
"ratingCount": 2556,
"countryAlpha2": "JP",
"city": "Shannychester",
"neighborhood": "Mid Glamorgan",
"address": "57683 Adams Falls",
"phone": "+1 202-555-0148 ext 1",
"website": "https://bartoletti-llc-49.example.com",
"hasDelivery": false,
"isOpen": true,
"latitude": 15.596188,
"longitude": 66.49699,
"createdAt": "2025-12-04T02:00:17.235Z",
"updatedAt": "2025-12-04T02:00:17.235Z"
}