example-data.com

songs / #96

Pennies From Heaven

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/songs/96"
)
song = res.json()
{
  "id": 96,
  "albumId": 10,
  "artistId": 5,
  "title": "Pennies From Heaven",
  "slug": "pennies-from-heaven-96",
  "trackNumber": 6,
  "durationSeconds": 425,
  "isExplicit": false,
  "playCount": 26157291,
  "createdAt": "2023-03-06T18:00:56.578Z"
}
Draftbit