Skip to main content
GET
/
api
/
research
/
tracks
cURL
curl --request GET \
  --url https://api.recoupable.dev/api/research/tracks
{
  "status": "success",
  "tracks": [
    {
      "title": "<string>",
      "avatar": "<string>",
      "release_date": "<string>",
      "site_url": "<string>",
      "isrcs": [
        "<string>"
      ],
      "artists": [
        {
          "name": "<string>"
        }
      ]
    }
  ]
}

Query Parameters

artist
string

Artist name. Required unless id is provided.

id
string

Provider artist ID returned by lookup or search. Required unless artist is provided.

Pattern: ^[A-Za-z0-9][A-Za-z0-9._:-]*$
Example:

"artist_123"

Response

Artist tracks

Artist catalog (tracks view).

status
string
Example:

"success"

tracks
object[]