Browse docs and collections
Overview
songs / #1528
Component variants
Medium
Eight Days a Week
· 7 min
Small
Eight Days a Week Related
References
Request
curl example
curl -sS \ "https://example-data.com/api/v1/songs/1528" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/songs/1528" ); 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/1528"
);
const song = (await res.json()) as Song; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/songs/1528"
)
song = res.json() Response
{
"id": 1528,
"albumId": 146,
"artistId": 52,
"title": "Eight Days a Week",
"slug": "eight-days-a-week-1528",
"trackNumber": 4,
"durationSeconds": 423,
"isExplicit": false,
"playCount": 41370435,
"createdAt": "2022-01-26T07:42:35.788Z"
}