Cummings and Sons
japanese · Rodriguezville · $$$ · ★ 3.5 (2681)
374 Airport Road
- Phone
- +1 202-555-0136 ext 1
Overview
restaurants / #37
japanese · Rodriguezville · $$$ · ★ 3.5 (2681)
374 Airport Road
Request
curl example
curl -sS \ "https://example-data.com/api/v1/restaurants/37" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/restaurants/37" ); 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/37"
);
const restaurant = (await res.json()) as Restaurant; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/restaurants/37"
)
restaurant = res.json() Response
{
"id": 37,
"name": "Cummings and Sons",
"slug": "cummings-and-sons-37",
"cuisine": "japanese",
"priceRange": "$$$",
"rating": 3.5,
"ratingCount": 2681,
"countryAlpha2": "DK",
"city": "Rodriguezville",
"neighborhood": "West Sussex",
"address": "374 Airport Road",
"phone": "+1 202-555-0136 ext 1",
"website": "https://cummings-and-sons-37.example.com",
"hasDelivery": true,
"isOpen": true,
"latitude": -6.535777,
"longitude": 135.334356,
"createdAt": "2025-02-07T04:20:58.821Z",
"updatedAt": "2025-02-07T04:20:58.821Z"
}