Armstrong - Rau
indian · Uptonshire · $ · ★ 3.9 (2280)
1134 Mill Lane
- Phone
- (988) 891-6580
restaurants / #69
indian · Uptonshire · $ · ★ 3.9 (2280)
1134 Mill Lane
curl -sS \
"https://example-data.com/api/v1/restaurants/69" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/restaurants/69"
);
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/69"
);
const restaurant = (await res.json()) as Restaurant;import requests
res = requests.get(
"https://example-data.com/api/v1/restaurants/69"
)
restaurant = res.json() {
"id": 69,
"name": "Armstrong - Rau",
"slug": "armstrong-rau-69",
"cuisine": "indian",
"priceRange": "$",
"rating": 3.9,
"ratingCount": 2280,
"countryAlpha2": "FI",
"city": "Uptonshire",
"neighborhood": "Central",
"address": "1134 Mill Lane",
"phone": "(988) 891-6580",
"website": null,
"hasDelivery": true,
"isOpen": true,
"latitude": -2.34049,
"longitude": 96.042954,
"createdAt": "2026-05-16T08:30:01.466Z",
"updatedAt": "2026-05-16T08:30:01.466Z"
}