Browse docs and collections
Overview
songs / #2249
Component variants
Medium
Kiss From a Rose
· 7 min
Small
Kiss From a Rose Related
References
Request
curl example
curl -sS \ "https://example-data.com/api/v1/songs/2249" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/songs/2249" ); 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/2249"
);
const song = (await res.json()) as Song; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/songs/2249"
)
song = res.json() Response
{
"id": 2249,
"albumId": 212,
"artistId": 74,
"title": "Kiss From a Rose",
"slug": "kiss-from-a-rose-2249",
"trackNumber": 2,
"durationSeconds": 430,
"isExplicit": true,
"playCount": 10722303,
"createdAt": "2021-10-17T17:09:42.365Z"
}