example-data.com
Menu
Browse docs and collections

Overview

places / #116

Riverside Park of Germany

Riverside Park of Germany

park · Berlin · ★ 4.9 (2294)

Component variants

Request

curl example

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

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/places/116"
);
const place = await res.json();

TypeScript example

// Download once: mkdir -p types && curl -o types/places.d.ts https://example-data.com/types/places.d.ts
import type { Place } from "./types/places";

const res = await fetch(
  "https://example-data.com/api/v1/places/116"
);
const place = (await res.json()) as Place;

Python example

import requests

res = requests.get(
    "https://example-data.com/api/v1/places/116"
)
place = res.json()

Response

{
  "id": 116,
  "name": "Riverside Park of Germany",
  "slug": "riverside-park-of-germany-116",
  "kind": "park",
  "city": "Berlin",
  "countryAlpha2": "DE",
  "latitude": 26.312199,
  "longitude": -162.504354,
  "rating": 4.9,
  "ratingCount": 2294,
  "description": "Victoria magnam terreo unus vorax acerbitas texo perferendis sui crux. Bene amissio vesica. Colligo agnosco vicinus degusto.",
  "imageUrl": "https://picsum.photos/seed/place-116/1200/800",
  "createdAt": "2025-09-14T18:42:32.721Z"
}