example-data.com

artists / #59

Doris MacGyver

Doris MacGyver

2010

soul

Cernuus verto theca cultura. Deprecator cado sulum amita adfero viriliter collum calcar comburo cedo. Voco synagoga tabesco delicate videlicet deinde vel. Traho incidunt amitto atqui clementia confido capto vitae. Aer clementia creator apud.

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/artists/59"
)
artist = res.json()
{
  "id": 59,
  "name": "Doris MacGyver",
  "slug": "doris-macgyver-59",
  "bio": "Cernuus verto theca cultura. Deprecator cado sulum amita adfero viriliter collum calcar comburo cedo. Voco synagoga tabesco delicate videlicet deinde vel. Traho incidunt amitto atqui clementia confido capto vitae. Aer clementia creator apud.",
  "genres": [
    "soul"
  ],
  "imageUrl": "https://picsum.photos/seed/artist-59/400/400",
  "monthlyListeners": 40042944,
  "formedYear": 2010,
  "isVerified": false,
  "createdAt": "2025-12-30T18:57:21.598Z"
}
Draftbit