example-data.com
Menu
Browse docs and collections

Overview

artists / #95

It's Still Rock 'n' Roll to Me Band

It's Still Rock 'n' Roll to Me Band

2009

popindiepunk

Vilicus candidus agnitio cinis timor constans neque natus valde surculus. Umquam abeo tum conventus.

Component variants

Related

Request

curl example

curl -sS \
  "https://example-data.com/api/v1/artists/95" \
  -H "Accept: application/json"

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/artists/95"
);
const artist = await res.json();

TypeScript example

// Download once: mkdir -p types && curl -o types/artists.d.ts https://example-data.com/types/artists.d.ts
import type { Artist } from "./types/artists";

const res = await fetch(
  "https://example-data.com/api/v1/artists/95"
);
const artist = (await res.json()) as Artist;

Python example

import requests

res = requests.get(
    "https://example-data.com/api/v1/artists/95"
)
artist = res.json()

Response

{
  "id": 95,
  "name": "It's Still Rock 'n' Roll to Me Band",
  "slug": "its-still-rock-n-roll-to-me-band-95",
  "bio": "Vilicus candidus agnitio cinis timor constans neque natus valde surculus. Umquam abeo tum conventus.",
  "genres": [
    "pop",
    "indie",
    "punk"
  ],
  "imageUrl": "https://picsum.photos/seed/artist-95/400/400",
  "monthlyListeners": 6200601,
  "formedYear": 2009,
  "isVerified": true,
  "createdAt": "2021-12-02T12:12:30.914Z"
}