example-data.com

restaurants / #77

Jaskolski LLC

korean · East Elmira · $ · ★ 4.1 (2892)

68882 Western Road

Phone
(351) 671-3471

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/restaurants/77"
)
restaurant = res.json()
{
  "id": 77,
  "name": "Jaskolski LLC",
  "slug": "jaskolski-llc-77",
  "cuisine": "korean",
  "priceRange": "$",
  "rating": 4.1,
  "ratingCount": 2892,
  "countryAlpha2": "GR",
  "city": "East Elmira",
  "neighborhood": "Central",
  "address": "68882 Western Road",
  "phone": "(351) 671-3471",
  "website": null,
  "hasDelivery": true,
  "isOpen": false,
  "latitude": 11.951145,
  "longitude": -81.845829,
  "createdAt": "2025-09-11T09:53:31.877Z",
  "updatedAt": "2025-09-11T09:53:31.877Z"
}
Draftbit