example-data.com

songs / #64

Dizzy

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/songs/64"
)
song = res.json()
{
  "id": 64,
  "albumId": 7,
  "artistId": 3,
  "title": "Dizzy",
  "slug": "dizzy-64",
  "trackNumber": 9,
  "durationSeconds": 385,
  "isExplicit": false,
  "playCount": 28650399,
  "createdAt": "2023-08-28T02:19:23.515Z"
}
Draftbit