Browse docs and collections
Overview
songs / #1513
Component variants
Medium
This Diamond Ring
· 5 min
Small
This Diamond Ring Related
References
Request
curl example
curl -sS \ "https://example-data.com/api/v1/songs/1513" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/songs/1513" ); 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/1513"
);
const song = (await res.json()) as Song; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/songs/1513"
)
song = res.json() Response
{
"id": 1513,
"albumId": 144,
"artistId": 51,
"title": "This Diamond Ring",
"slug": "this-diamond-ring-1513",
"trackNumber": 14,
"durationSeconds": 310,
"isExplicit": false,
"playCount": 35863018,
"createdAt": "2024-07-11T13:33:12.406Z"
}