example-data.com

destinations / #44

New Benmouth

New Benmouth

destination · ★ 43.0

Component variants

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

const res = await fetch(
  "https://example-data.com/api/v1/destinations/44"
);
const destination = (await res.json()) as Destination;
import requests

res = requests.get(
    "https://example-data.com/api/v1/destinations/44"
)
destination = res.json()
{
  "id": 44,
  "name": "New Benmouth",
  "slug": "new-benmouth-44",
  "countryAlpha2": "BR",
  "description": "Explore breathtaking landscapes, ancient history, and warm hospitality.",
  "imageUrl": "https://picsum.photos/seed/dest-44/800/600",
  "popularity": 43
}
Draftbit