example-data.com

artists / #97

Coming Up Band

Coming Up Band

1967

soul

Sollers totus campana talis. Quae aduro sol tenus vir vehemens ultio eius eaque acer.

Component variants

Related

Referenced by

curl -sS \
  "https://example-data.com/api/v1/artists/97" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/artists/97"
);
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/97"
);
const artist = (await res.json()) as Artist;
import requests

res = requests.get(
    "https://example-data.com/api/v1/artists/97"
)
artist = res.json()
{
  "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"
}
Draftbit