example-data.com
Menu
Browse docs and collections

Overview

restaurants / #77

Jaskolski LLC

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

68882 Western Road

Phone
+1 202-555-0176 ext 1

Component variants

Related

Request

curl example

curl -sS \
  "https://example-data.com/api/v1/restaurants/77" \
  -H "Accept: application/json"

JavaScript example

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

Python example

import requests

res = requests.get(
    "https://example-data.com/api/v1/restaurants/77"
)
restaurant = res.json()

Response

{
  "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": "+1 202-555-0176 ext 1",
  "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"
}