example-data.com

songs / #207

Travellin' Band

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/songs/207"
)
song = res.json()
{
  "id": 207,
  "albumId": 20,
  "artistId": 8,
  "title": "Travellin' Band",
  "slug": "travellin-band-207",
  "trackNumber": 8,
  "durationSeconds": 324,
  "isExplicit": false,
  "playCount": 27189088,
  "createdAt": "2022-09-16T07:28:58.940Z"
}
Draftbit