Deduco
2013
countryrock
Overview
albums / #243
2013
Deduco
2013
Request
curl example
curl -sS \ "https://example-data.com/api/v1/albums/243" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/albums/243" ); const album = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/albums.d.ts https://example-data.com/types/albums.d.ts
import type { Album } from "./types/albums";
const res = await fetch(
"https://example-data.com/api/v1/albums/243"
);
const album = (await res.json()) as Album; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/albums/243"
)
album = res.json() Response
{
"id": 243,
"artistId": 85,
"title": "Deduco",
"slug": "deduco-243",
"releaseDate": "2013-09-12",
"trackCount": 8,
"durationSeconds": 2681,
"genres": [
"country",
"rock"
],
"coverUrl": "https://picsum.photos/seed/album-243/500/500",
"createdAt": "2025-08-30T17:19:26.877Z"
}