Peior carpo
2011
countryrockhip-hop
albums / #105
2011
Peior carpo
2011
curl -sS \
"https://example-data.com/api/v1/albums/105" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/albums/105"
);
const album = await res.json();import type { Album } from "https://example-data.com/types/albums.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/albums/105"
);
const album = (await res.json()) as Album;import requests
res = requests.get(
"https://example-data.com/api/v1/albums/105"
)
album = res.json() {
"id": 105,
"artistId": 40,
"title": "Peior carpo",
"slug": "peior-carpo-105",
"releaseDate": "2011-10-12",
"trackCount": 10,
"durationSeconds": 3735,
"genres": [
"country",
"rock",
"hip-hop"
],
"coverUrl": "https://picsum.photos/seed/album-105/500/500",
"createdAt": "2024-03-14T13:35:43.657Z"
}