example-data.com

artists / #95

It's Still Rock 'n' Roll to Me Band

It's Still Rock 'n' Roll to Me Band

2009

popindiepunk

Vilicus candidus agnitio cinis timor constans neque natus valde surculus. Umquam abeo tum conventus.

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/artists/95"
)
artist = res.json()
{
  "id": 95,
  "name": "It's Still Rock 'n' Roll to Me Band",
  "slug": "its-still-rock-n-roll-to-me-band-95",
  "bio": "Vilicus candidus agnitio cinis timor constans neque natus valde surculus. Umquam abeo tum conventus.",
  "genres": [
    "pop",
    "indie",
    "punk"
  ],
  "imageUrl": "https://picsum.photos/seed/artist-95/400/400",
  "monthlyListeners": 6200601,
  "formedYear": 2009,
  "isVerified": true,
  "createdAt": "2021-12-02T12:12:30.914Z"
}
Draftbit