artists
artists
Page 3 of 5.
Overview
-
quasi & The conduco conduco
1954
-
Greg McLaughlin
2019
-
Peter Wisoky
1950
-
Fast Car Band
1978
-
Yolanda Koelpin
1989
-
Kristine Schuster
2003
-
Puttin' on the Ritz Band
1996
-
Oliver Rogahn
1978
-
Hotel California Band
1987
-
Jonathan Yost
2020
-
Doris MacGyver
2010
-
infit & The inflammatio aptus
1970
-
Tyrone Bednar
1997
-
Crazy Band
1999
-
Hips don't lie Band
2000
-
Darryl Reichert
2003
-
Natasha Klein II
1987
-
I'm Your Boogie Man Band
2004
-
Randolph Hansen II
1984
-
cotidie & The aggero cuppedia
2005
-
umerus & The angustus uredo
1976
-
I'm Yours Band
1956
-
Rickey Zieme-Reichel
2012
-
cunabula & The solium tubineus
2000
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": 49,
"name": "quasi & The conduco conduco",
"slug": "quasi-the-conduco-conduco-49",
"bio": "Caries conatus bestia decumbo templum viridis thermae. Auctor sodalitas usus accedo bene. Umquam statim concedo. Considero aggredior accusator cattus currus cubitum statim ait thesis cumque.",
"genres": [
"reggae"
],
"imageUrl": "https://picsum.photos/seed/artist-49/400/400",
"monthlyListeners": 10127121,
"formedYear": 1954,
"isVerified": true,
"createdAt": "2023-06-22T10:01:07.153Z"
},
{
"id": 50,
"name": "Greg McLaughlin",
"slug": "greg-mclaughlin-50",
"bio": "Comparo carcer una vinum. Atavus conturbo confugo combibo aspernatur coaegresco. Blanditiis centum perspiciatis dens degusto ubi bene volva pecto sollers.",
"genres": [
"rock"
],
"imageUrl": "https://picsum.photos/seed/artist-50/400/400",
"monthlyListeners": 26677716,
"formedYear": 2019,
"isVerified": false,
"createdAt": "2022-12-31T20:13:33.986Z"
},
{
"id": 51,
"name": "Peter Wisoky",
"slug": "peter-wisoky-51",
"bio": "Studio pel arcesso pectus adeo arma toties. Recusandae sequi sono defendo turpis illo aegrotatio aer spiritus. Accedo adaugeo torrens creta adamo.",
"genres": [
"rock",
"hip-hop",
"punk"
],
"imageUrl": "https://picsum.photos/seed/artist-51/400/400",
"monthlyListeners": 29255960,
"formedYear": 1950,
"isVerified": false,
"createdAt": "2024-01-10T13:52:56.471Z"
}
],
"meta": {
"page": 3,
"limit": 24,
"total": 100,
"totalPages": 5
},
"links": {
"self": "/api/v1/artists?page=3&limit=24",
"first": "/api/v1/artists?page=1&limit=24",
"last": "/api/v1/artists?page=5&limit=24",
"next": "/api/v1/artists?page=4&limit=24",
"prev": "/api/v1/artists?page=2&limit=24"
}
}