example-data.com

artists / #15

Tom O'Keefe

Tom O'Keefe

1981

countryfolk

Venia iste viridis brevis volva. Stips autus eius usque suspendo utilis vorago.

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/artists/15"
)
artist = res.json()
{
  "id": 15,
  "name": "Tom O'Keefe",
  "slug": "tom-okeefe-15",
  "bio": "Venia iste viridis brevis volva. Stips autus eius usque suspendo utilis vorago.",
  "genres": [
    "country",
    "folk"
  ],
  "imageUrl": "https://picsum.photos/seed/artist-15/400/400",
  "monthlyListeners": 11603172,
  "formedYear": 1981,
  "isVerified": false,
  "createdAt": "2023-02-14T08:31:24.613Z"
}
Draftbit