Call this function if you want to get a list with all your sources API Function: get_sources
<?php $api_username = '*******'; $api_subscription = '*******'; try { $client = new SoapClient('https://synced.io/api/v2?wsdl'); $sources = $client->get_sources($api_username, $api_subscription); } catch(Exception $e) { echo $e->getMessage(); } if(!empty($sources)) { print_r($sources); } ?>