example-data.com

restaurants / #9

Larson, Keeling and Klocko

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

53466 Bradtke Brooks

Phone
(535) 685-0432

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/restaurants/9"
)
restaurant = res.json()
{
  "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": "(535) 685-0432",
  "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"
}
Draftbit