example-data.com
Menu
Browse docs and collections

Overview

restaurants / #62

Douglas Group

thai · New Cletastead · $$$ · ★ 3.3 (566)

9607 Lauriane Fort

Phone
+1 202-555-0161 ext 1

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 62,
  "name": "Douglas Group",
  "slug": "douglas-group-62",
  "cuisine": "thai",
  "priceRange": "$$$",
  "rating": 3.3,
  "ratingCount": 566,
  "countryAlpha2": "SG",
  "city": "New Cletastead",
  "neighborhood": "Hertfordshire",
  "address": "9607 Lauriane Fort",
  "phone": "+1 202-555-0161 ext 1",
  "website": null,
  "hasDelivery": true,
  "isOpen": true,
  "latitude": -28.367833,
  "longitude": -163.990565,
  "createdAt": "2025-11-10T17:33:50.974Z",
  "updatedAt": "2025-11-10T17:33:50.974Z"
}