Cruickshank - Jacobi
mexican · Vandervortfield · $$$$ · ★ 3.0 (1790)
234 Agustina Rapids
- Phone
- +1 202-555-0109 ext 1
Overview
restaurants / #10
mexican · Vandervortfield · $$$$ · ★ 3.0 (1790)
234 Agustina Rapids
Request
curl example
curl -sS \ "https://example-data.com/api/v1/restaurants/10" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/restaurants/10" ); 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/10"
);
const restaurant = (await res.json()) as Restaurant; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/restaurants/10"
)
restaurant = res.json() Response
{
"id": 10,
"name": "Cruickshank - Jacobi",
"slug": "cruickshank-jacobi-10",
"cuisine": "mexican",
"priceRange": "$$$$",
"rating": 3,
"ratingCount": 1790,
"countryAlpha2": "MA",
"city": "Vandervortfield",
"neighborhood": "West Yorkshire",
"address": "234 Agustina Rapids",
"phone": "+1 202-555-0109 ext 1",
"website": "https://cruickshank-jacobi-10.example.com",
"hasDelivery": false,
"isOpen": true,
"latitude": 34.0401,
"longitude": 55.470936,
"createdAt": "2024-07-05T01:55:17.725Z",
"updatedAt": "2024-07-05T01:55:17.725Z"
}