songs / #145
Component variants
Medium
I Honestly Love You
· 8 min
Small
I Honestly Love You Related
curl -sS \
"https://example-data.com/api/v1/songs/145" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/songs/145"
);
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/145"
);
const song = (await res.json()) as Song;import requests
res = requests.get(
"https://example-data.com/api/v1/songs/145"
)
song = res.json() {
"id": 145,
"albumId": 15,
"artistId": 6,
"title": "I Honestly Love You",
"slug": "i-honestly-love-you-145",
"trackNumber": 2,
"durationSeconds": 450,
"isExplicit": false,
"playCount": 3171945,
"createdAt": "2024-03-12T23:13:59.593Z"
}