Browse docs and collections
Overview
songs / #1806
Component variants
Medium
Puttin' on the Ritz
· 6 min
Small
Puttin' on the Ritz Related
References
Request
curl example
curl -sS \ "https://example-data.com/api/v1/songs/1806" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/songs/1806" ); 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/1806"
);
const song = (await res.json()) as Song; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/songs/1806"
)
song = res.json() Response
{
"id": 1806,
"albumId": 173,
"artistId": 61,
"title": "Puttin' on the Ritz",
"slug": "puttin-on-the-ritz-1806",
"trackNumber": 1,
"durationSeconds": 372,
"isExplicit": false,
"playCount": 31072157,
"createdAt": "2025-11-21T04:21:09.487Z"
}