Browse docs and collections
Overview
songs / #2620
Component variants
Medium
Joy to the World
· 2 min
Small
Joy to the World Related
References
Request
curl example
curl -sS \ "https://example-data.com/api/v1/songs/2620" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/songs/2620" ); 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/2620"
);
const song = (await res.json()) as Song; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/songs/2620"
)
song = res.json() Response
{
"id": 2620,
"albumId": 249,
"artistId": 87,
"title": "Joy to the World",
"slug": "joy-to-the-world-2620",
"trackNumber": 9,
"durationSeconds": 109,
"isExplicit": false,
"playCount": 44445651,
"createdAt": "2021-09-13T23:22:19.792Z"
}