Unlimited leads API
Authentication
All API requests must include an Authorization header. The header should refer to your private key.
When you sign up for API access, Unlimited leads assigns an API private key to your account. Your private API key is only known by you and Unlimited leads. It is important to keep both confidential to protect your account. Your API key is accessible from the Account link.
API Call: find email
POST https://api.unlimited-leads-to.online
Returns a JSON-encoded object with the email address for the given person and domain. Calls to the API are metered and billed if there is an email returned with the result. If there is no email available you will not be billed.
POST Request Parameters
- firstName - The first name of the person (required)
- lastName - The last name of the person (required)
- domain - The domain to query (required)
Example Request Parameters
- firstName - John
- lastName - Doe
- domain - company.com
POST Response
curl Request Example
> curl -vk \
-H "Content-Type: application/json" \
-H "Authorization: api_private_key" \
-X POST "https://api.unlimited-leads-to.online" \
-d '{
"firstName": "John",
"lastName": "Doe",
"domain": "company.com",
}'
No Email Found Response
{
"email": null
}