curl -sS \
"https://example-data.com/api/v1/songs/60" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/songs/60"
);
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/60"
);
const song = (await res.json()) as Song;import requests
res = requests.get(
"https://example-data.com/api/v1/songs/60"
)
song = res.json() {
"id": 60,
"albumId": 7,
"artistId": 3,
"title": "Walk On By",
"slug": "walk-on-by-60",
"trackNumber": 5,
"durationSeconds": 164,
"isExplicit": false,
"playCount": 36602887,
"createdAt": "2023-07-05T08:19:40.058Z"
}