songs / #7
Component variants
Medium
Smoke On the Water
· 7 min
Small
Smoke On the Water Related
References
curl -sS \
"https://example-data.com/api/v1/songs/7" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/songs/7"
);
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/7"
);
const song = (await res.json()) as Song;import requests
res = requests.get(
"https://example-data.com/api/v1/songs/7"
)
song = res.json() {
"id": 7,
"albumId": 1,
"artistId": 1,
"title": "Smoke On the Water",
"slug": "smoke-on-the-water-7",
"trackNumber": 7,
"durationSeconds": 401,
"isExplicit": false,
"playCount": 20674589,
"createdAt": "2021-11-30T14:31:55.417Z"
}