Appearance
Get all albums
GET
/api/v1/artists/{artistId}/albums
Get a list of all albums from a legendary Argentine Rock artist.
Parameters
Path Parameters
artistId*
Type
Requiredinteger
Example
1Format
"int64"Query Parameters
limit
The number of items to return
Type
integer
Format
"int64"Default
10offset
The number of items to skip before starting to collect the result set
Type
integer
Format
"int64"Default
0Responses
OK
application/json
JSON
{
"data": [
{
"id": 1,
"name": "La Máquina de Hacer Pájaros",
"year": 1976,
"image": "https://cdn.rock-legends.com/photos/la-maquina.jpg"
}
],
"meta": {
"limit": 10,
"offset": 0,
"total": 100,
"next": "/artists?limit=10&offset=10"
}
}