example-data.com

places / #114

Market Square of Germany

Market Square of Germany

shopping · Berlin · ★ 4.1 (198)

Component variants

curl -sS \
  "https://example-data.com/api/v1/places/114" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/places/114"
);
const place = await res.json();
import type { Place } from "https://example-data.com/types/places.d.ts";

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

res = requests.get(
    "https://example-data.com/api/v1/places/114"
)
place = res.json()
{
  "id": 114,
  "name": "Market Square of Germany",
  "slug": "market-square-of-germany-114",
  "kind": "shopping",
  "city": "Berlin",
  "countryAlpha2": "DE",
  "latitude": -41.151459,
  "longitude": -24.027263,
  "rating": 4.1,
  "ratingCount": 198,
  "description": "Absconditus solus agnosco bonus adhuc optio deleo. Vesco tunc vito trepide absque tibi congregatio. Cursim conqueror statua amplus.",
  "imageUrl": "https://picsum.photos/seed/place-114/1200/800",
  "createdAt": "2021-09-02T12:56:39.544Z"
}
Draftbit