corrumpo & The aspernatur bellicus
2015
metalpunkblues
Approbo aequus tubineus iusto tabesco atque solvo sui voluptatem consuasor. Vobis decimus considero. Comes caste suppono depulso minus.
artists / #41
2015
Approbo aequus tubineus iusto tabesco atque solvo sui voluptatem consuasor. Vobis decimus considero. Comes caste suppono depulso minus.
curl -sS \
"https://example-data.com/api/v1/artists/41" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/artists/41"
);
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/41"
);
const artist = (await res.json()) as Artist;import requests
res = requests.get(
"https://example-data.com/api/v1/artists/41"
)
artist = res.json() {
"id": 41,
"name": "corrumpo & The aspernatur bellicus",
"slug": "corrumpo-the-aspernatur-bellicus-41",
"bio": "Approbo aequus tubineus iusto tabesco atque solvo sui voluptatem consuasor. Vobis decimus considero. Comes caste suppono depulso minus.",
"genres": [
"metal",
"punk",
"blues"
],
"imageUrl": "https://picsum.photos/seed/artist-41/400/400",
"monthlyListeners": 47454689,
"formedYear": 2015,
"isVerified": false,
"createdAt": "2023-12-03T15:22:28.255Z"
}