Los Angeles
destination · ★ 64.0
Overview
Request
curl example
curl -sS \ "https://example-data.com/api/v1/destinations/21" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/destinations/21" ); const destination = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/destinations.d.ts https://example-data.com/types/destinations.d.ts
import type { Destination } from "./types/destinations";
const res = await fetch(
"https://example-data.com/api/v1/destinations/21"
);
const destination = (await res.json()) as Destination; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/destinations/21"
)
destination = res.json() Response
{
"id": 21,
"name": "Los Angeles",
"slug": "los-angeles-21",
"countryAlpha2": "US",
"description": "Famous for its iconic landmarks, diverse neighborhoods, and buzzing nightlife.",
"imageUrl": "https://picsum.photos/seed/dest-21/800/600",
"popularity": 64
}