Heathcote Inc
mexican · Schmidtfield · $ · ★ 2.7 (2278)
36638 Park Road
- Phone
- +1 202-555-0152 ext 1
Overview
restaurants / #53
mexican · Schmidtfield · $ · ★ 2.7 (2278)
36638 Park Road
Request
curl example
curl -sS \ "https://example-data.com/api/v1/restaurants/53" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/restaurants/53" ); 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/53"
);
const restaurant = (await res.json()) as Restaurant; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/restaurants/53"
)
restaurant = res.json() Response
{
"id": 53,
"name": "Heathcote Inc",
"slug": "heathcote-inc-53",
"cuisine": "mexican",
"priceRange": "$",
"rating": 2.7,
"ratingCount": 2278,
"countryAlpha2": "SG",
"city": "Schmidtfield",
"neighborhood": "Perry County",
"address": "36638 Park Road",
"phone": "+1 202-555-0152 ext 1",
"website": null,
"hasDelivery": false,
"isOpen": true,
"latitude": 9.132428,
"longitude": -23.170842,
"createdAt": "2025-03-09T11:50:48.551Z",
"updatedAt": "2025-03-09T11:50:48.551Z"
}