example-data.com
Menu
Browse docs and collections

Overview

artists / #9

I Love Rock 'n' Roll Band

I Love Rock 'n' Roll Band

2000

countryjazzpunk

Tripudio volubilis absorbeo corroboro adopto aestivus avarus. Alveus super tibi appello. Valeo asperiores spiritus tardus hic optio vacuus. Altus considero velut tubineus undique aestas ipsam.

Component variants

Related

Request

curl example

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

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/artists/9"
);
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/9"
);
const artist = (await res.json()) as Artist;

Python example

import requests

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

Response

{
  "id": 9,
  "name": "I Love Rock 'n' Roll Band",
  "slug": "i-love-rock-n-roll-band-9",
  "bio": "Tripudio volubilis absorbeo corroboro adopto aestivus avarus. Alveus super tibi appello. Valeo asperiores spiritus tardus hic optio vacuus. Altus considero velut tubineus undique aestas ipsam.",
  "genres": [
    "country",
    "jazz",
    "punk"
  ],
  "imageUrl": "https://picsum.photos/seed/artist-9/400/400",
  "monthlyListeners": 42227154,
  "formedYear": 2000,
  "isVerified": false,
  "createdAt": "2021-11-19T08:23:18.158Z"
}