example-data.com

songs / #43

Doo Wop (That Thing)

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/songs/43"
)
song = res.json()
{
  "id": 43,
  "albumId": 5,
  "artistId": 2,
  "title": "Doo Wop (That Thing)",
  "slug": "doo-wop-that-thing-43",
  "trackNumber": 11,
  "durationSeconds": 312,
  "isExplicit": false,
  "playCount": 3689716,
  "createdAt": "2023-02-23T14:41:55.337Z"
}
Draftbit