curl -sS \
"https://example-data.com/api/v1/songs/238" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/songs/238"
);
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/238"
);
const song = (await res.json()) as Song;import requests
res = requests.get(
"https://example-data.com/api/v1/songs/238"
)
song = res.json() {
"id": 238,
"albumId": 22,
"artistId": 9,
"title": "Over There",
"slug": "over-there-238",
"trackNumber": 13,
"durationSeconds": 289,
"isExplicit": false,
"playCount": 47231510,
"createdAt": "2021-12-25T16:24:56.433Z"
}