songs / #121
Component variants
Medium
I Honestly Love You
· 5 min
Small
I Honestly Love You Related
curl -sS \
"https://example-data.com/api/v1/songs/121" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/songs/121"
);
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/121"
);
const song = (await res.json()) as Song;import requests
res = requests.get(
"https://example-data.com/api/v1/songs/121"
)
song = res.json() {
"id": 121,
"albumId": 12,
"artistId": 5,
"title": "I Honestly Love You",
"slug": "i-honestly-love-you-121",
"trackNumber": 6,
"durationSeconds": 311,
"isExplicit": false,
"playCount": 9318432,
"createdAt": "2025-07-01T06:08:44.758Z"
}