Abutor vesco
2010
electronicrock
Overview
albums / #229
2010
Abutor vesco
2010
Request
curl example
curl -sS \ "https://example-data.com/api/v1/albums/229" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/albums/229" ); 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/229"
);
const album = (await res.json()) as Album; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/albums/229"
)
album = res.json() Response
{
"id": 229,
"artistId": 80,
"title": "Abutor vesco",
"slug": "abutor-vesco-229",
"releaseDate": "2010-06-18",
"trackCount": 6,
"durationSeconds": 1324,
"genres": [
"electronic",
"rock"
],
"coverUrl": "https://picsum.photos/seed/album-229/500/500",
"createdAt": "2025-03-05T20:38:11.101Z"
}