example-data.com
Menu
Browse docs and collections

Overview

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

Request

curl example

curl -sS \
  "https://example-data.com/api/v1/artists/59" \
  -H "Accept: application/json"

JavaScript example

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

Python example

import requests

res = requests.get(
    "https://example-data.com/api/v1/artists/59"
)
artist = res.json()

Response

{
  "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"
}