Browse docs and collections
Overview
songs / #2276
Component variants
Medium
Livin' On a Prayer
· 4 min
Small
Livin' On a Prayer Related
References
Request
curl example
curl -sS \ "https://example-data.com/api/v1/songs/2276" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/songs/2276" ); 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/2276"
);
const song = (await res.json()) as Song; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/songs/2276"
)
song = res.json() Response
{
"id": 2276,
"albumId": 214,
"artistId": 75,
"title": "Livin' On a Prayer",
"slug": "livin-on-a-prayer-2276",
"trackNumber": 11,
"durationSeconds": 224,
"isExplicit": false,
"playCount": 40579350,
"createdAt": "2021-07-09T08:07:04.479Z"
}