Piloterr

Email Verify

Verify whether an email address is valid and deliverable, returning a clear status to prevent bounces and maintain list hygiene.

Credit cost: 1 credit per call

GET
/v2/email/verify

Authorization

ApiKeyAuth
x-api-key<token>

Your API key. Include it in the x-api-key header for every request.

In: header

Query Parameters

query*string

The email address you want to verify.

Example:

remi.agosta@piloterr.com

Note: Provide the full email address including the domain. The API checks deliverability and returns valid, invalid, or unknown as the status.

Response Body

application/json

application/json

application/json

application/json

application/json

application/json

curl -X GET "https://api.piloterr.com/v2/email/verify?query=string"

{
  "email": "g.scaglia@piloterr.com",
  "status": "invalid"
}

{
  "error": "Bad Request"
}
{
  "error": "Invalid API Key"
}
{
  "error": "Payment required"
}
{
  "error": "Rate limit exceeded for the API key: quota monthly"
}
{
  "error": "Internal Error"
}