Browse docs and collections
Overview
songs / #457
Component variants
Medium
Cat's in the Cradle
· 4 min
Small
Cat's in the Cradle Related
References
Request
curl example
curl -sS \ "https://example-data.com/api/v1/songs/457" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/songs/457" ); 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/457"
);
const song = (await res.json()) as Song; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/songs/457"
)
song = res.json() Response
{
"id": 457,
"albumId": 43,
"artistId": 18,
"title": "Cat's in the Cradle",
"slug": "cats-in-the-cradle-457",
"trackNumber": 1,
"durationSeconds": 241,
"isExplicit": false,
"playCount": 40934570,
"createdAt": "2022-04-26T18:18:56.978Z"
}