example-data.com

artists / #31

Ms. Delores Roberts

Ms. Delores Roberts

2004

reggae

Degenero dolorum voluptatum ademptio. Civis stultus appositus alter terga.

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/artists/31"
)
artist = res.json()
{
  "id": 31,
  "name": "Ms. Delores Roberts",
  "slug": "ms-delores-roberts-31",
  "bio": "Degenero dolorum voluptatum ademptio. Civis stultus appositus alter terga.",
  "genres": [
    "reggae"
  ],
  "imageUrl": "https://picsum.photos/seed/artist-31/400/400",
  "monthlyListeners": 34579375,
  "formedYear": 2004,
  "isVerified": false,
  "createdAt": "2023-06-30T12:12:28.147Z"
}
Draftbit