Ritchie - Rowe
american · Trompfort · $$$ · ★ 2.9 (2155)
70353 Flatley Ford
- Phone
- (856) 292-5013
restaurants / #85
american · Trompfort · $$$ · ★ 2.9 (2155)
70353 Flatley Ford
curl -sS \
"https://example-data.com/api/v1/restaurants/85" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/restaurants/85"
);
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/85"
);
const restaurant = (await res.json()) as Restaurant;import requests
res = requests.get(
"https://example-data.com/api/v1/restaurants/85"
)
restaurant = res.json() {
"id": 85,
"name": "Ritchie - Rowe",
"slug": "ritchie-rowe-85",
"cuisine": "american",
"priceRange": "$$$",
"rating": 2.9,
"ratingCount": 2155,
"countryAlpha2": "PT",
"city": "Trompfort",
"neighborhood": "Highlands and Islands",
"address": "70353 Flatley Ford",
"phone": "(856) 292-5013",
"website": null,
"hasDelivery": false,
"isOpen": true,
"latitude": -19.884198,
"longitude": -12.462147,
"createdAt": "2025-10-03T10:58:06.659Z",
"updatedAt": "2025-10-03T10:58:06.659Z"
}