example-data.com

songs / #4

My Boyfriend's Back

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/songs/4"
)
song = res.json()
{
  "id": 4,
  "albumId": 1,
  "artistId": 1,
  "title": "My Boyfriend's Back",
  "slug": "my-boyfriends-back-4",
  "trackNumber": 4,
  "durationSeconds": 95,
  "isExplicit": false,
  "playCount": 40948033,
  "createdAt": "2025-11-07T02:59:51.022Z"
}
Draftbit