example-data.com
Menu
Browse docs and collections

Overview

artists / #30

Ghostbusters Band

Ghostbusters Band

1996

folkreggae

Voluptate nihil vociferor. Vulgus caelestis urbanus arcus somniculosus saepe admitto depulso subvenio ocer. Caste absum suasoria callide attero. Cornu aequus depopulo.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 30,
  "name": "Ghostbusters Band",
  "slug": "ghostbusters-band-30",
  "bio": "Voluptate nihil vociferor. Vulgus caelestis urbanus arcus somniculosus saepe admitto depulso subvenio ocer. Caste absum suasoria callide attero. Cornu aequus depopulo.",
  "genres": [
    "folk",
    "reggae"
  ],
  "imageUrl": "https://picsum.photos/seed/artist-30/400/400",
  "monthlyListeners": 6674947,
  "formedYear": 1996,
  "isVerified": false,
  "createdAt": "2022-03-01T14:54:37.240Z"
}