Rutherford - Mosciski
vietnamese · Feestport · $$$ · ★ 4.8 (1134)
4776 Oak Street
- Phone
- +1 202-555-0114 ext 1
Overview
restaurants / #15
vietnamese · Feestport · $$$ · ★ 4.8 (1134)
4776 Oak Street
Request
curl example
curl -sS \ "https://example-data.com/api/v1/restaurants/15" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/restaurants/15" ); 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/15"
);
const restaurant = (await res.json()) as Restaurant; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/restaurants/15"
)
restaurant = res.json() Response
{
"id": 15,
"name": "Rutherford - Mosciski",
"slug": "rutherford-mosciski-15",
"cuisine": "vietnamese",
"priceRange": "$$$",
"rating": 4.8,
"ratingCount": 1134,
"countryAlpha2": "JP",
"city": "Feestport",
"neighborhood": "Humberside",
"address": "4776 Oak Street",
"phone": "+1 202-555-0114 ext 1",
"website": null,
"hasDelivery": false,
"isOpen": true,
"latitude": -51.360349,
"longitude": 120.599934,
"createdAt": "2026-01-22T00:57:33.799Z",
"updatedAt": "2026-01-22T00:57:33.799Z"
}