centum & The ulciscor sponte
1981
jazz
Deinde vindico valens ad ambulo aestivus. Caute coniuratio conor apud.
Overview
artists / #16
1981
Deinde vindico valens ad ambulo aestivus. Caute coniuratio conor apud.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/artists/16" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/artists/16" ); 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/16"
);
const artist = (await res.json()) as Artist; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/artists/16"
)
artist = res.json() Response
{
"id": 16,
"name": "centum & The ulciscor sponte",
"slug": "centum-the-ulciscor-sponte-16",
"bio": "Deinde vindico valens ad ambulo aestivus. Caute coniuratio conor apud.",
"genres": [
"jazz"
],
"imageUrl": "https://picsum.photos/seed/artist-16/400/400",
"monthlyListeners": 5104343,
"formedYear": 1981,
"isVerified": false,
"createdAt": "2025-06-02T17:36:50.300Z"
}