example-data.com

artists / #25

All Along the Watchtower Band

All Along the Watchtower Band

2012

punk

Assentator asperiores corroboro damnatio perspiciatis conor eaque cursus verto dignissimos. Aegre triumphus contabesco auctor pauper deprimo tripudio aeger tibi vinum. Stips demergo quisquam assentator absque timor. Toties solum carmen degero super absque.

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/artists/25"
)
artist = res.json()
{
  "id": 25,
  "name": "All Along the Watchtower Band",
  "slug": "all-along-the-watchtower-band-25",
  "bio": "Assentator asperiores corroboro damnatio perspiciatis conor eaque cursus verto dignissimos. Aegre triumphus contabesco auctor pauper deprimo tripudio aeger tibi vinum. Stips demergo quisquam assentator absque timor. Toties solum carmen degero super absque.",
  "genres": [
    "punk"
  ],
  "imageUrl": "https://picsum.photos/seed/artist-25/400/400",
  "monthlyListeners": 6800865,
  "formedYear": 2012,
  "isVerified": false,
  "createdAt": "2021-07-24T18:34:41.130Z"
}
Draftbit