Skip to content

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
integer
Required
Example1
Format
"int64"

Query Parameters

limit

The number of items to return

Type
integer
Format
"int64"
Default
10
offset

The number of items to skip before starting to collect the result set

Type
integer
Format
"int64"
Default
0

Responses

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"
}
}

Playground

Variables
Key
Value

Samples

Powered by VitePress OpenAPI