Collins Group
french · Murrieta · $$$$ · ★ 2.8 (2668)
8790 Tillman Fort
- Phone
- (581) 583-7617
restaurants / #19
french · Murrieta · $$$$ · ★ 2.8 (2668)
8790 Tillman Fort
curl -sS \
"https://example-data.com/api/v1/restaurants/19" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/restaurants/19"
);
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/19"
);
const restaurant = (await res.json()) as Restaurant;import requests
res = requests.get(
"https://example-data.com/api/v1/restaurants/19"
)
restaurant = res.json() {
"id": 19,
"name": "Collins Group",
"slug": "collins-group-19",
"cuisine": "french",
"priceRange": "$$$$",
"rating": 2.8,
"ratingCount": 2668,
"countryAlpha2": "FI",
"city": "Murrieta",
"neighborhood": "Hertfordshire",
"address": "8790 Tillman Fort",
"phone": "(581) 583-7617",
"website": null,
"hasDelivery": true,
"isOpen": true,
"latitude": 40.632658,
"longitude": 113.14776,
"createdAt": "2024-07-18T04:09:16.187Z",
"updatedAt": "2024-07-18T04:09:16.187Z"
}