Coming Up Band
1967
soul
Sollers totus campana talis. Quae aduro sol tenus vir vehemens ultio eius eaque acer.
Overview
artists / #97
1967
Sollers totus campana talis. Quae aduro sol tenus vir vehemens ultio eius eaque acer.
Coming Up Band
1967
Request
curl example
curl -sS \ "https://example-data.com/api/v1/artists/97" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/artists/97" ); 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/97"
);
const artist = (await res.json()) as Artist; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/artists/97"
)
artist = res.json() Response
{
"id": 97,
"name": "Coming Up Band",
"slug": "coming-up-band-97",
"bio": "Sollers totus campana talis. Quae aduro sol tenus vir vehemens ultio eius eaque acer.",
"genres": [
"soul"
],
"imageUrl": "https://picsum.photos/seed/artist-97/400/400",
"monthlyListeners": 21360645,
"formedYear": 1967,
"isVerified": false,
"createdAt": "2025-09-27T01:09:54.241Z"
}