Hello,
Please share your code but basically, the following should work:
$client = new KalturaClient($config);
$filter = new KalturaMediaEntryFilter();
$filter->orderBy = '-plays';
$pager = null;
$result = $client->baseEntry->listAction($filter, $pager);
You can also do "+plays" to reverse the order, i.e asc or desc.