example-data.com

artists / #45

Herman Osinski-Block

Herman Osinski-Block

1983

punkfolk

Inventore delego varietas. Cruentus iure collum caute vilicus animus crapula catena tego debilito. Umerus aggredior vomer verecundia eveniet vito catena.

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/artists/45"
)
artist = res.json()
{
  "id": 45,
  "name": "Herman Osinski-Block",
  "slug": "herman-osinski-block-45",
  "bio": "Inventore delego varietas. Cruentus iure collum caute vilicus animus crapula catena tego debilito. Umerus aggredior vomer verecundia eveniet vito catena.",
  "genres": [
    "punk",
    "folk"
  ],
  "imageUrl": "https://picsum.photos/seed/artist-45/400/400",
  "monthlyListeners": 6053828,
  "formedYear": 1983,
  "isVerified": false,
  "createdAt": "2025-02-14T14:33:18.146Z"
}
Draftbit