example-data.com

artists / #83

vesper & The conventus tabella

vesper & The conventus tabella

1995

soulpop

Administratio somniculosus talus denique vero carpo adipisci consectetur voluptates. Ventito turpis cupiditate video.

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/artists/83"
)
artist = res.json()
{
  "id": 83,
  "name": "vesper & The conventus tabella",
  "slug": "vesper-the-conventus-tabella-83",
  "bio": "Administratio somniculosus talus denique vero carpo adipisci consectetur voluptates. Ventito turpis cupiditate video.",
  "genres": [
    "soul",
    "pop"
  ],
  "imageUrl": "https://picsum.photos/seed/artist-83/400/400",
  "monthlyListeners": 8549699,
  "formedYear": 1995,
  "isVerified": false,
  "createdAt": "2022-04-15T13:32:30.652Z"
}
Draftbit