example-data.com

artists / #27

Marcia Parker

Marcia Parker

1989

countryjazz

Demoror altus coma. Aestas aduro eveniet. Somniculosus nesciunt tonsor.

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/artists/27"
)
artist = res.json()
{
  "id": 27,
  "name": "Marcia Parker",
  "slug": "marcia-parker-27",
  "bio": "Demoror altus coma. Aestas aduro eveniet. Somniculosus nesciunt tonsor.",
  "genres": [
    "country",
    "jazz"
  ],
  "imageUrl": "https://picsum.photos/seed/artist-27/400/400",
  "monthlyListeners": 23042799,
  "formedYear": 1989,
  "isVerified": false,
  "createdAt": "2025-12-18T09:57:10.959Z"
}
Draftbit