example-data.com
Menu
Browse docs and collections

Overview

restaurants / #47

Pouros, O'Reilly and Block

korean · Lake Chandler · $ · ★ 3.5 (1385)

20728 E Water Street

Phone
+1 202-555-0146 ext 1

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 47,
  "name": "Pouros, O'Reilly and Block",
  "slug": "pouros-o-reilly-and-block-47",
  "cuisine": "korean",
  "priceRange": "$",
  "rating": 3.5,
  "ratingCount": 1385,
  "countryAlpha2": "IL",
  "city": "Lake Chandler",
  "neighborhood": "Clay County",
  "address": "20728 E Water Street",
  "phone": "+1 202-555-0146 ext 1",
  "website": null,
  "hasDelivery": true,
  "isOpen": true,
  "latitude": -3.424324,
  "longitude": -95.344106,
  "createdAt": "2025-11-27T14:08:01.423Z",
  "updatedAt": "2025-11-27T14:08:01.423Z"
}