example-data.com

artists / #21

If (They Made Me a King) Band

If (They Made Me a King) Band

1950

indiejazz

Cras arcesso thermae caries vulnero condico molestiae vociferor accusator contabesco. Demergo communis deinde supplanto sonitus consuasor. Ea aspernatur absconditus voluptatibus termes defungo cinis. Demergo vilis vis.

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/artists/21"
)
artist = res.json()
{
  "id": 21,
  "name": "If (They Made Me a King) Band",
  "slug": "if-they-made-me-a-king-band-21",
  "bio": "Cras arcesso thermae caries vulnero condico molestiae vociferor accusator contabesco. Demergo communis deinde supplanto sonitus consuasor. Ea aspernatur absconditus voluptatibus termes defungo cinis. Demergo vilis vis.",
  "genres": [
    "indie",
    "jazz"
  ],
  "imageUrl": "https://picsum.photos/seed/artist-21/400/400",
  "monthlyListeners": 2546855,
  "formedYear": 1950,
  "isVerified": false,
  "createdAt": "2021-06-30T09:19:14.991Z"
}
Draftbit