Skip to main content
GET
/
users
/
me
/
liked-artists
List artists current user has liked
curl --request GET \
  --url https://open.beatpass.ca/api/v1/users/me/liked-artists \
  --header 'Authorization: Bearer <token>'
{
  "status": "success",
  "pagination": {
    "current_page": 1,
    "from": 1,
    "to": 100,
    "per_page": 25,
    "last_page": 156,
    "total": 264,
    "data": [
      {
        "id": 123,
        "name": "Led Zeppelin",
        "image_small": "https://example.com/image1.jpg",
        "verified": true
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

perPage
integer
default:20

How many tracks to return per page

page
integer
default:1

Which page to return

Response

Response body contains a paginated list of artists user has liked in JSON format.

status
string
Example:

"success"

pagination
object
Last modified on November 29, 2025