example-data.com
Menu
Browse docs and collections

artists

artists

Page 5 of 5.

Overview

Request

curl example

curl -sS \
  "https://example-data.com/api/v1/artists?limit=25"

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/artists?limit=25"
);
const { data, meta } = 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, ListEnvelope } from "./types/artists";

const res = await fetch(
  "https://example-data.com/api/v1/artists?limit=25"
);
const { data, meta } = (await res.json()) as ListEnvelope<Artist>;

Python example

import requests

res = requests.get(
    "https://example-data.com/api/v1/artists",
    params={"limit": 25},
)
data = res.json()

Response

{
  "data": [
    {
      "id": 97,
      "name": "Coming Up Band",
      "slug": "coming-up-band-97",
      "bio": "Sollers totus campana talis. Quae aduro sol tenus vir vehemens ultio eius eaque acer.",
      "genres": [
        "soul"
      ],
      "imageUrl": "https://picsum.photos/seed/artist-97/400/400",
      "monthlyListeners": 21360645,
      "formedYear": 1967,
      "isVerified": false,
      "createdAt": "2025-09-27T01:09:54.241Z"
    },
    {
      "id": 98,
      "name": "Hey Ya! Band",
      "slug": "hey-ya-band-98",
      "bio": "Eum annus exercitationem ars credo bellicus sursum. Summisse iure minus. Amet suffragium abstergo adopto utpote. Porro termes depraedor carmen natus. Torrens coepi paulatim taedium copiose iusto.",
      "genres": [
        "r&b"
      ],
      "imageUrl": "https://picsum.photos/seed/artist-98/400/400",
      "monthlyListeners": 4886467,
      "formedYear": 1952,
      "isVerified": false,
      "createdAt": "2023-12-23T20:30:58.197Z"
    },
    {
      "id": 99,
      "name": "Willie Harris",
      "slug": "willie-harris-99",
      "bio": "Acerbitas comptus bellum hic calco crinis speciosus. Cicuta adduco vergo vae reiciendis tepesco ea. Pel sto dolores tabula coadunatio usitas. Deripio desparatus pecto peior.",
      "genres": [
        "folk"
      ],
      "imageUrl": "https://picsum.photos/seed/artist-99/400/400",
      "monthlyListeners": 36785199,
      "formedYear": 1968,
      "isVerified": false,
      "createdAt": "2023-01-03T15:25:04.695Z"
    }
  ],
  "meta": {
    "page": 5,
    "limit": 24,
    "total": 100,
    "totalPages": 5
  },
  "links": {
    "self": "/api/v1/artists?page=5&limit=24",
    "first": "/api/v1/artists?page=1&limit=24",
    "last": "/api/v1/artists?page=5&limit=24",
    "next": null,
    "prev": "/api/v1/artists?page=4&limit=24"
  }
}