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.
Overview
artists / #45
1983
Inventore delego varietas. Cruentus iure collum caute vilicus animus crapula catena tego debilito. Umerus aggredior vomer verecundia eveniet vito catena.
Herman Osinski-Block
1983
Request
curl example
curl -sS \ "https://example-data.com/api/v1/artists/45" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/artists/45" ); const artist = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/artists.d.ts https://example-data.com/types/artists.d.ts
import type { Artist } from "./types/artists";
const res = await fetch(
"https://example-data.com/api/v1/artists/45"
);
const artist = (await res.json()) as Artist; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/artists/45"
)
artist = res.json() Response
{
"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"
}