example-data.com
Menu
Browse docs and collections

Overview

songs / #324

(Let Me Be Your) Teddy Bear

Component variants

Related

Request

curl example

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

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/songs/324"
);
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/324"
);
const song = (await res.json()) as Song;

Python example

import requests

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

Response

{
  "id": 324,
  "albumId": 30,
  "artistId": 14,
  "title": "(Let Me Be Your) Teddy Bear",
  "slug": "let-me-be-your-teddy-bear-324",
  "trackNumber": 11,
  "durationSeconds": 386,
  "isExplicit": false,
  "playCount": 37072041,
  "createdAt": "2024-03-18T20:32:27.810Z"
}