example-data.com
Menu
Browse docs and collections

Overview

artists / #54

Kristine Schuster

Kristine Schuster

2003

metalcountry

Quo aeger candidus comis. Angulus tantillus agnosco demum valetudo temperantia quasi depraedor amo sortitus.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 54,
  "name": "Kristine Schuster",
  "slug": "kristine-schuster-54",
  "bio": "Quo aeger candidus comis. Angulus tantillus agnosco demum valetudo temperantia quasi depraedor amo sortitus.",
  "genres": [
    "metal",
    "country"
  ],
  "imageUrl": "https://picsum.photos/seed/artist-54/400/400",
  "monthlyListeners": 37267788,
  "formedYear": 2003,
  "isVerified": false,
  "createdAt": "2024-04-14T18:22:38.719Z"
}