Deleted Tracks

The API track deletions action will return a list of your deleted tracks.

/api/tracks/getDeletions
Param Required Description
before no Unix timestamp that will filter out any results after this date.
after no Unix timestamp that will filter out any results before this date.
limit no Number of results per page.
page no Page of results desired.

Example Response

{
"count": 2,
"page": 1,
"show": 50,
"total_pages": 1
"tracks": Array[2][
{
"track_id: 12074528,
"user_id": 555555,
"date": 1602202007,
"white_id": 9898,
"title": "Techno Beats",
"catalog_id": 10111,
"label_id": 1872649
},
// ...
}