Hi,
You can do:
$client = new KalturaClient($config);
$filter = new KalturaBaseEntryFilter();
$filter->statusEqual = KalturaEntryStatus::DELETED;
$pager = null;
$result = $client->baseEntry->listAction($filter, $pager);
The above is an example with our PHP clientlib but can be done with any of them of course.