songs / #188
Component variants
Related
curl -sS \
"https://example-data.com/api/v1/songs/188" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/songs/188"
);
const song = await res.json();import type { Song } from "https://example-data.com/types/songs.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/songs/188"
);
const song = (await res.json()) as Song;import requests
res = requests.get(
"https://example-data.com/api/v1/songs/188"
)
song = res.json() {
"id": 188,
"albumId": 18,
"artistId": 7,
"title": "I Want to Know What Love Is",
"slug": "i-want-to-know-what-love-is-188",
"trackNumber": 11,
"durationSeconds": 158,
"isExplicit": false,
"playCount": 48958636,
"createdAt": "2025-04-20T10:21:16.203Z"
}