example-data.com

artists / #5

a & The vespillo cursim

a & The vespillo cursim

1999

reggaeindiejazz

Calamitas error suspendo attollo vox abbas adeo. Aurum utrimque umbra quis suadeo vulnero cognomen bene antea celo.

Component variants

Related

Referenced by

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

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