example-data.com
curl -sS \
  "https://example-data.com/api/v1/songs/194" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/songs/194"
);
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/194"
);
const song = (await res.json()) as Song;
import requests

res = requests.get(
    "https://example-data.com/api/v1/songs/194"
)
song = res.json()
{
  "id": 194,
  "albumId": 19,
  "artistId": 8,
  "title": "White Christmas",
  "slug": "white-christmas-194",
  "trackNumber": 5,
  "durationSeconds": 186,
  "isExplicit": false,
  "playCount": 26194895,
  "createdAt": "2021-11-15T19:01:11.118Z"
}
Draftbit