Get all artists
GET
/api/v1/artists
Get a list of all legendary Argentine Rock artists and explore their contributions to the music scene. You can get one using the GETGet an artist endpoint.
Parameters
Query Parameters
limit
The number of items to return
Typeinteger
Examples
10
20
50
format
"int64"
default
10
offset
The number of items to skip before starting to collect the result set
Typeinteger
Examples
1
23
456
format
"int64"
default
0
Responses
Success Response
The request was successful and returns a list of artists.
Response Format
The response includes:
- A
data
array containing artist objects - Pagination information
Note: You can use the pagination parameters to navigate through large result sets.
application/json
JSON
{
"data": [
{
"id": 1,
"name": "Charly García",
"description": "One of the most influential rock musicians in Argentine history.",
"image": "https://cdn.rock-legends.com/photos/charly.jpg",
"band": "Sui Generis"
}
],
"meta": {
"limit": 10,
"offset": 0,
"total": 100,
"next": "/artists?limit=10&offset=10"
}
}