Browse docs and collections
Overview
songs / #866
Component variants
Medium
I Can't Get Started
· 8 min
Small
I Can't Get Started Related
Request
curl example
curl -sS \ "https://example-data.com/api/v1/songs/866" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/songs/866" ); 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/866"
);
const song = (await res.json()) as Song; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/songs/866"
)
song = res.json() Response
{
"id": 866,
"albumId": 82,
"artistId": 33,
"title": "I Can't Get Started",
"slug": "i-cant-get-started-866",
"trackNumber": 7,
"durationSeconds": 464,
"isExplicit": false,
"playCount": 14932006,
"createdAt": "2025-05-07T09:00:10.099Z"
}