a & The vespillo cursim
1999
reggaeindiejazz
Calamitas error suspendo attollo vox abbas adeo. Aurum utrimque umbra quis suadeo vulnero cognomen bene antea celo.
Overview
artists / #5
1999
Calamitas error suspendo attollo vox abbas adeo. Aurum utrimque umbra quis suadeo vulnero cognomen bene antea celo.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/artists/5" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/artists/5" ); const artist = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/artists.d.ts https://example-data.com/types/artists.d.ts
import type { Artist } from "./types/artists";
const res = await fetch(
"https://example-data.com/api/v1/artists/5"
);
const artist = (await res.json()) as Artist; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/artists/5"
)
artist = res.json() Response
{
"id": 5,
"name": "a & The vespillo cursim",
"slug": "a-the-vespillo-cursim-5",
"bio": "Calamitas error suspendo attollo vox abbas adeo. Aurum utrimque umbra quis suadeo vulnero cognomen bene antea celo.",
"genres": [
"reggae",
"indie",
"jazz"
],
"imageUrl": "https://picsum.photos/seed/artist-5/400/400",
"monthlyListeners": 15480247,
"formedYear": 1999,
"isVerified": true,
"createdAt": "2025-03-06T06:09:09.345Z"
}