example-data.com

artists / #11

Take My Breath Away Band

Take My Breath Away Band

1978

indiepopblues

Venustas peior sunt abeo votum conitor. Desparatus tametsi atavus. Odio abeo aspicio vicinus urbs.

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/artists/11"
)
artist = res.json()
{
  "id": 11,
  "name": "Take My Breath Away Band",
  "slug": "take-my-breath-away-band-11",
  "bio": "Venustas peior sunt abeo votum conitor. Desparatus tametsi atavus. Odio abeo aspicio vicinus urbs.",
  "genres": [
    "indie",
    "pop",
    "blues"
  ],
  "imageUrl": "https://picsum.photos/seed/artist-11/400/400",
  "monthlyListeners": 49438969,
  "formedYear": 1978,
  "isVerified": false,
  "createdAt": "2025-12-01T19:53:25.530Z"
}
Draftbit