example-data.com

songs / #149

I'll Be Missing You

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/songs/149"
)
song = res.json()
{
  "id": 149,
  "albumId": 15,
  "artistId": 6,
  "title": "I'll Be Missing You",
  "slug": "ill-be-missing-you-149",
  "trackNumber": 6,
  "durationSeconds": 135,
  "isExplicit": false,
  "playCount": 46001826,
  "createdAt": "2025-01-18T13:11:08.386Z"
}
Draftbit