centum & The ulciscor sponte
1981
jazz
Deinde vindico valens ad ambulo aestivus. Caute coniuratio conor apud.
artists / #16
1981
Deinde vindico valens ad ambulo aestivus. Caute coniuratio conor apud.
curl -sS \
"https://example-data.com/api/v1/artists/16" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/artists/16"
);
const artist = await res.json();import type { Artist } from "https://example-data.com/types/artists.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/artists/16"
);
const artist = (await res.json()) as Artist;import requests
res = requests.get(
"https://example-data.com/api/v1/artists/16"
)
artist = res.json() {
"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"
}