example-data.com

restaurants / #53

Heathcote Inc

mexican · Schmidtfield · $ · ★ 2.7 (2278)

36638 Park Road

Phone
(381) 989-9775

Component variants

Related

curl -sS \
  "https://example-data.com/api/v1/restaurants/53" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/restaurants/53"
);
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/53"
);
const restaurant = (await res.json()) as Restaurant;
import requests

res = requests.get(
    "https://example-data.com/api/v1/restaurants/53"
)
restaurant = res.json()
{
  "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": "(381) 989-9775",
  "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"
}
Draftbit