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

res = requests.get(
    "https://example-data.com/api/v1/songs/199"
)
song = res.json()
{
  "id": 199,
  "albumId": 19,
  "artistId": 8,
  "title": "You Always Hurt the One You Love",
  "slug": "you-always-hurt-the-one-you-love-199",
  "trackNumber": 10,
  "durationSeconds": 238,
  "isExplicit": false,
  "playCount": 31600506,
  "createdAt": "2023-11-22T19:37:32.314Z"
}
Draftbit