artists
artists
Page 2 of 5.
Overview
-
All Along the Watchtower Band
2012
-
Evelyn Nolan
1974
-
Marcia Parker
1989
-
Ain't No Sunshine Band
1972
-
Hey Ya! Band
1979
-
Ghostbusters Band
1996
-
Ms. Delores Roberts
2004
-
iusto & The deserunt ducimus
1959
-
degusto & The absorbeo concedo
2006
-
Jimmy Abshire
1951
-
Harvey Mueller
2003
-
E.T. Band
1977
-
quo & The cunabula una
1974
-
Summertime Blues Band
1968
-
Shake You Down Band
2015
-
capillus & The amaritudo aiunt
1985
-
corrumpo & The aspernatur bellicus
2015
-
convoco & The delego administratio
1993
-
Rock the Boat Band
1991
-
Stephen Gulgowski V
1983
-
Herman Osinski-Block
1983
-
currus & The demitto maiores
1972
-
What Goes Around Comes Around Band
1969
-
talus & The et terreo
1977
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": 25,
"name": "All Along the Watchtower Band",
"slug": "all-along-the-watchtower-band-25",
"bio": "Assentator asperiores corroboro damnatio perspiciatis conor eaque cursus verto dignissimos. Aegre triumphus contabesco auctor pauper deprimo tripudio aeger tibi vinum. Stips demergo quisquam assentator absque timor. Toties solum carmen degero super absque.",
"genres": [
"punk"
],
"imageUrl": "https://picsum.photos/seed/artist-25/400/400",
"monthlyListeners": 6800865,
"formedYear": 2012,
"isVerified": false,
"createdAt": "2021-07-24T18:34:41.130Z"
},
{
"id": 26,
"name": "Evelyn Nolan",
"slug": "evelyn-nolan-26",
"bio": "Suus accusator urbs assentator. Autus sumptus decretum. Amaritudo crux urbs vulnus adfero strenuus civitas voluptates.",
"genres": [
"r&b",
"metal"
],
"imageUrl": "https://picsum.photos/seed/artist-26/400/400",
"monthlyListeners": 36947851,
"formedYear": 1974,
"isVerified": false,
"createdAt": "2022-09-14T20:38:27.538Z"
},
{
"id": 27,
"name": "Marcia Parker",
"slug": "marcia-parker-27",
"bio": "Demoror altus coma. Aestas aduro eveniet. Somniculosus nesciunt tonsor.",
"genres": [
"country",
"jazz"
],
"imageUrl": "https://picsum.photos/seed/artist-27/400/400",
"monthlyListeners": 23042799,
"formedYear": 1989,
"isVerified": false,
"createdAt": "2025-12-18T09:57:10.959Z"
}
],
"meta": {
"page": 2,
"limit": 24,
"total": 100,
"totalPages": 5
},
"links": {
"self": "/api/v1/artists?page=2&limit=24",
"first": "/api/v1/artists?page=1&limit=24",
"last": "/api/v1/artists?page=5&limit=24",
"next": "/api/v1/artists?page=3&limit=24",
"prev": "/api/v1/artists?page=1&limit=24"
}
}