example-data.com

artists / #9

I Love Rock 'n' Roll Band

I Love Rock 'n' Roll Band

2000

countryjazzpunk

Tripudio volubilis absorbeo corroboro adopto aestivus avarus. Alveus super tibi appello. Valeo asperiores spiritus tardus hic optio vacuus. Altus considero velut tubineus undique aestas ipsam.

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/artists/9"
)
artist = res.json()
{
  "id": 9,
  "name": "I Love Rock 'n' Roll Band",
  "slug": "i-love-rock-n-roll-band-9",
  "bio": "Tripudio volubilis absorbeo corroboro adopto aestivus avarus. Alveus super tibi appello. Valeo asperiores spiritus tardus hic optio vacuus. Altus considero velut tubineus undique aestas ipsam.",
  "genres": [
    "country",
    "jazz",
    "punk"
  ],
  "imageUrl": "https://picsum.photos/seed/artist-9/400/400",
  "monthlyListeners": 42227154,
  "formedYear": 2000,
  "isVerified": false,
  "createdAt": "2021-11-19T08:23:18.158Z"
}
Draftbit