POST
/
email_finder
/
instant
curl --request POST \
  --url https://api.clearout.io/v2/email_finder/instant \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "name": "Steven Morris",
  "domain": "apple.com",
  "timeout": 30000,
  "queue": true
}'
{
  "status": "success",
  "data": {
    "emails": [
      {
        "email_address": "[email protected]",
        "role": "no",
        "business": "yes"
      }
    ],
    "first_name": "steven",
    "last_name": "morris",
    "full_name": "steven morris",
    "domain": "apple.com",
    "confidence_score": 83,
    "total": 1,
    "company": {
      "name": "apple"
    },
    "found_on": "2021-08-21T03:10:02.796Z"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
Email to Find Instantly
name
string
required
Example:

"Steven Morris"

domain
string
required
Example:

"apple.com"

timeout
integer
Example:

30000

queue
boolean
Example:

true

Response

200
application/json
OK
status
string
Example:

"success"

data
object