使用Xverify进行电子邮件验证

I am using API of Xverify for email verifiation

Below is my API code:

require 'XverifyClientAPI.php';
$api_key = 'myapikey'; // Your API Key
$options = array();
$options['type'] = 'json'; // API response type
$options['domain'] = 'addeddomainname';// Reruired your domain name 
$client = new XverifyClientAPI($api_key,$options);

$data = array();
$data['email'] = 'test@xverify.com';
$client->verify('email',$data);
echo '<pre>';
echo "valid: ", var_dump($client->is_valid()), "
";
echo "status: ", $client->status(), "
";
print_r($client->getReponseAsObject());// Convert the json response into object

Here I have use API key which is provided in my xverify account and domain name which is added in my xverify account

but still its give me error like below valid: bool(false)

status: bad_request

stdClass Object
(
    [syntax] => 1
    [handle] => test
    [domain] => xverify.com
    [catch_all] => unknown
    [address] => test@xverify.com
    [error] => 0
    [status] => bad_request
    [responsecode] => 504
    [message] => Reach the API Limit
    [duration] => 0.013515949249268
)

I am not getting what is the problem with this ,can any body help me ?