Deripio adamo
2017
folkhip-hopcountry
Overview
albums / #89
2017
Deripio adamo
2017
Request
curl example
curl -sS \ "https://example-data.com/api/v1/albums/89" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/albums/89" ); 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/89"
);
const album = (await res.json()) as Album; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/albums/89"
)
album = res.json() Response
{
"id": 89,
"artistId": 35,
"title": "Deripio adamo",
"slug": "deripio-adamo-89",
"releaseDate": "2017-03-31",
"trackCount": 12,
"durationSeconds": 3081,
"genres": [
"folk",
"hip-hop",
"country"
],
"coverUrl": "https://picsum.photos/seed/album-89/500/500",
"createdAt": "2025-06-18T06:21:31.335Z"
}