Email finder API
Sample Email finder API request (using the GET method)
HTTP Request
GET https://gamalogic.com/email-discovery/
Code Examples
cURL
curl "https://gamalogic.com/email-discovery/?firstname=YourFirstName&lastname=YourLastName&domain=YourDomain&apikey=yourAPIkey&speed_rank=0"
Note: Make sure to replace your_api_key with your API key.
Parameters
Parameter | Type | Description |
---|---|---|
YourFirstname | string | First name of the lead |
YourLastname | string | Last name of the lead |
YourDomain | string | Url of the company |
apikey | string | Your 32-char API key from the dashboard |
speed_rank | int | Here you can set the speed of verification. By default it is 0, More the rank less the speed, and more accuracy (default 0, min 1, max 5) |
Response
Attribute | Description |
---|---|
certified | Real-Time Validated |
email | Verified Email address |
Error | If error then return true or false |
Response Example
{
"certified": "verified",
"email": "jessica@gamalogic.com",
"error": false
}
Error Example
{
"error": True,
"error_code": 102,
"error_message": "Credits Exhausted please contact support@gamalogic.com"
}
List the error code with a detailed message.
You can contact our technical support for further troubleshooting support@gamalogic.com
ERROR CODE | ERROR MESSAGES |
---|---|
101 | Unauthorized Access |
102 | Credits Exhausted please contact support@gamalogic.com |
103 | Contact support@gamalogic.com |
104 | No Domain address to search email address |
105 | No Names to search email address |
Last updated on