Browse docs and collections
Overview
songs / #2624
Component variants
Related
References
Request
curl example
curl -sS \ "https://example-data.com/api/v1/songs/2624" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/songs/2624" ); 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/2624"
);
const song = (await res.json()) as Song; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/songs/2624"
)
song = res.json() Response
{
"id": 2624,
"albumId": 249,
"artistId": 87,
"title": "Can't Get Enough of Your Love, Babe",
"slug": "cant-get-enough-of-your-love-babe-2624",
"trackNumber": 13,
"durationSeconds": 225,
"isExplicit": false,
"playCount": 34752719,
"createdAt": "2025-11-11T15:42:41.271Z"
}