Rutherford - Mosciski
vietnamese · Feestport · $$$ · ★ 4.8 (1134)
4776 Oak Street
- Phone
- (445) 510-5904
restaurants / #15
vietnamese · Feestport · $$$ · ★ 4.8 (1134)
4776 Oak Street
curl -sS \
"https://example-data.com/api/v1/restaurants/15" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/restaurants/15"
);
const restaurant = await res.json();import type { Restaurant } from "https://example-data.com/types/restaurants.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/restaurants/15"
);
const restaurant = (await res.json()) as Restaurant;import requests
res = requests.get(
"https://example-data.com/api/v1/restaurants/15"
)
restaurant = res.json() {
"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": "(445) 510-5904",
"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"
}