example-data.com

artists / #34

Jimmy Abshire

Jimmy Abshire

1951

folk

Valeo usitas aestas recusandae. Audax defungo verbum tergo cibo delibero.

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/artists/34"
)
artist = res.json()
{
  "id": 34,
  "name": "Jimmy Abshire",
  "slug": "jimmy-abshire-34",
  "bio": "Valeo usitas aestas recusandae. Audax defungo verbum tergo cibo delibero.",
  "genres": [
    "folk"
  ],
  "imageUrl": "https://picsum.photos/seed/artist-34/400/400",
  "monthlyListeners": 33029434,
  "formedYear": 1951,
  "isVerified": false,
  "createdAt": "2023-05-28T23:52:36.642Z"
}
Draftbit