example-data.com
Menu
Browse docs and collections

Overview

places / #14

Coral Cove of Peru

Coral Cove of Peru

beach · Lima · ★ 4.8 (1222)

Component variants

Request

curl example

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

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/places/14"
);
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/14"
);
const place = (await res.json()) as Place;

Python example

import requests

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

Response

{
  "id": 14,
  "name": "Coral Cove of Peru",
  "slug": "coral-cove-of-peru-14",
  "kind": "beach",
  "city": "Lima",
  "countryAlpha2": "PE",
  "latitude": 64.145617,
  "longitude": -20.589042,
  "rating": 4.8,
  "ratingCount": 1222,
  "description": "Capillus tondeo ars depraedor. Tertius uredo talis vergo vulgaris animadverto aduro consuasor utpote. Suadeo volutabrum bis talus uxor eveniet molestiae dens testimonium.",
  "imageUrl": "https://picsum.photos/seed/place-14/1200/800",
  "createdAt": "2021-05-28T06:30:41.001Z"
}