example-data.com
Menu
Browse docs and collections

Overview

songs / #2556

Be Bop a Lula

Component variants

Related

Request

curl example

curl -sS \
  "https://example-data.com/api/v1/songs/2556" \
  -H "Accept: application/json"

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/songs/2556"
);
const song = await res.json();

TypeScript example

// Download once: mkdir -p types && curl -o types/songs.d.ts https://example-data.com/types/songs.d.ts
import type { Song } from "./types/songs";

const res = await fetch(
  "https://example-data.com/api/v1/songs/2556"
);
const song = (await res.json()) as Song;

Python example

import requests

res = requests.get(
    "https://example-data.com/api/v1/songs/2556"
)
song = res.json()

Response

{
  "id": 2556,
  "albumId": 242,
  "artistId": 85,
  "title": "Be Bop a Lula",
  "slug": "be-bop-a-lula-2556",
  "trackNumber": 3,
  "durationSeconds": 167,
  "isExplicit": true,
  "playCount": 21436275,
  "createdAt": "2024-10-22T14:25:14.317Z"
}