Collins Group
french · Murrieta · $$$$ · ★ 2.8 (2668)
8790 Tillman Fort
- Phone
- +1 202-555-0118 ext 1
Overview
restaurants / #19
french · Murrieta · $$$$ · ★ 2.8 (2668)
8790 Tillman Fort
Request
curl example
curl -sS \ "https://example-data.com/api/v1/restaurants/19" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/restaurants/19" ); 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/19"
);
const restaurant = (await res.json()) as Restaurant; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/restaurants/19"
)
restaurant = res.json() Response
{
"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": "+1 202-555-0118 ext 1",
"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"
}