Browse docs and collections
Overview
songs / #2433
Component variants
Medium
If You Leave Me Now
· 6 min
Small
If You Leave Me Now Related
References
Request
curl example
curl -sS \ "https://example-data.com/api/v1/songs/2433" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/songs/2433" ); const song = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/songs.d.ts https://example-data.com/types/songs.d.ts
import type { Song } from "./types/songs";
const res = await fetch(
"https://example-data.com/api/v1/songs/2433"
);
const song = (await res.json()) as Song; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/songs/2433"
)
song = res.json() Response
{
"id": 2433,
"albumId": 230,
"artistId": 81,
"title": "If You Leave Me Now",
"slug": "if-you-leave-me-now-2433",
"trackNumber": 7,
"durationSeconds": 374,
"isExplicit": false,
"playCount": 12111958,
"createdAt": "2026-01-03T10:22:57.506Z"
}