example-data.com

songs / #158

One O'Clock Jump

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/songs/158"
)
song = res.json()
{
  "id": 158,
  "albumId": 16,
  "artistId": 6,
  "title": "One O'Clock Jump",
  "slug": "one-oclock-jump-158",
  "trackNumber": 4,
  "durationSeconds": 430,
  "isExplicit": false,
  "playCount": 35750801,
  "createdAt": "2021-08-13T19:36:40.381Z"
}
Draftbit