example-data.com

artists / #76

Walk Don't Run Band

Walk Don't Run Band

1959

hip-hop

Quisquam ait adaugeo callide maiores carus communis patior bonus. Canis creo certus volutabrum victus.

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/artists/76"
)
artist = res.json()
{
  "id": 76,
  "name": "Walk Don't Run Band",
  "slug": "walk-dont-run-band-76",
  "bio": "Quisquam ait adaugeo callide maiores carus communis patior bonus. Canis creo certus volutabrum victus.",
  "genres": [
    "hip-hop"
  ],
  "imageUrl": "https://picsum.photos/seed/artist-76/400/400",
  "monthlyListeners": 11281538,
  "formedYear": 1959,
  "isVerified": false,
  "createdAt": "2025-10-28T18:41:17.325Z"
}
Draftbit