example-data.com

songs / #103

You Don't Have to Be a Star (To Be in My Show)

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/songs/103"
)
song = res.json()
{
  "id": 103,
  "albumId": 11,
  "artistId": 5,
  "title": "You Don't Have to Be a Star (To Be in My Show)",
  "slug": "you-dont-have-to-be-a-star-to-be-in-my-show-103",
  "trackNumber": 1,
  "durationSeconds": 230,
  "isExplicit": false,
  "playCount": 46652298,
  "createdAt": "2025-06-25T20:16:22.985Z"
}
Draftbit