Skip to main content
POST
/
tracks
/
check-duplicates
Check for duplicate tracks using fingerprinting
curl --request POST \
  --url https://open.beatpass.ca/api/v1/tracks/check-duplicates \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "track_ids": [
    1,
    2,
    3
  ]
}
'
{
  "status": "success",
  "duplicates": [
    {}
  ]
}

Authorizations

Authorization
string
header
required

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

Body

application/json
track_ids
integer[]
Example:
[1, 2, 3]

Response

Duplicate check results

status
string
Example:

"success"

duplicates
object[]
Last modified on November 29, 2025