example-data.com
Menu
Browse docs and collections

Overview

restaurants / #9

Larson, Keeling and Klocko

vietnamese · Aidanboro · $$$ · ★ 4.4 (1406)

53466 Bradtke Brooks

Phone
+1 202-555-0108 ext 1

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 9,
  "name": "Larson, Keeling and Klocko",
  "slug": "larson-keeling-and-klocko-9",
  "cuisine": "vietnamese",
  "priceRange": "$$$",
  "rating": 4.4,
  "ratingCount": 1406,
  "countryAlpha2": "NG",
  "city": "Aidanboro",
  "neighborhood": "Polk County",
  "address": "53466 Bradtke Brooks",
  "phone": "+1 202-555-0108 ext 1",
  "website": null,
  "hasDelivery": true,
  "isOpen": true,
  "latitude": -46.534927,
  "longitude": 57.583487,
  "createdAt": "2026-03-31T09:30:57.594Z",
  "updatedAt": "2026-03-31T09:30:57.594Z"
}