InTouch Hub · Blue Isle Software

Clearout

Verify email deliverability and find prospect emails via the Clearout API. Instant single-email verification, instant email finder by name + domain, and account credit balance.

Provided free and as is, without warranty of any kind — including merchantability, fitness for a particular purpose, and the accuracy or completeness of any result. See the licence. You are responsible for checking what this produces before relying on it.

agreementemaillevelmarketing-emailreportservicestatus

Clearout

Verify email deliverability and find prospect emails via the Clearout API.

Clearout validates single email addresses in real time (without sending a test email), discovers professional email addresses from a person's name and company domain, and reports your remaining account credits. This tool wraps those endpoints for use inside InTouch jobs and the AI assistant.

What it does

Operations

operation HTTP Endpoint Required inputs
verify-email POST /v2/email_verify/instant email
find-email POST /v2/email_finder/instant name, domain
account-credits GET /v2/account/credits

Base URL: https://api.clearout.io

timeout (milliseconds, max 180000) is an optional input for verify-email and find-email.

API key setup

  1. Sign in to your Clearout dashboard at https://clearout.io.
  2. Open the API section and copy your API token (a JWT string).
  3. Pass it as the apiKey input. The tool sends it as Authorization: Bearer <apiKey> on every request.

A single token fully authenticates every call — there is no OAuth handshake.

Examples

Verify a single address:

{
  "apiKey": "<YOUR_CLEAROUT_TOKEN>",
  "operation": "verify-email",
  "email": "[email protected]"
}

Find a prospect's email by name + domain:

{
  "apiKey": "<YOUR_CLEAROUT_TOKEN>",
  "operation": "find-email",
  "name": "Tony Stark",
  "domain": "marvel.com"
}

Check remaining credits:

{
  "apiKey": "<YOUR_CLEAROUT_TOKEN>",
  "operation": "account-credits"
}

Output

The tool publishes two values:

Non-2xx responses (e.g. 401 for a bad token, 402/422 for insufficient credits or bad parameters) are returned in result/status rather than raised — the JSON body explains the error. A transport failure or a missing required input fails the step with an {"error": ...} envelope.

Publishes

The keys a later task may reference as {{taskName.key}}. Referencing anything not listed here resolves to nothing at run time.

Input Properties

Every property this tool accepts, from its own tool.iml.

Property Type Required Default Description
apiKey string yes DEPRECATED — bind an API Key credential to the task with credentialName instead. A key pasted here is stored in the workflow definition in clear and appears in every export of it. Still honoured for workflows built before the change.
operation string yes One of: verify-email, find-email, account-credits
email string no Email address to verify. Required for verify-email.
name string no Name of the person to find (e.g. 'Tony Stark'). Required for find-email.
domain string no Domain or company name (e.g. 'marvel.com' or 'Marvel Entertainment'). Required for find-email.
timeout string no Optional request wait time in milliseconds (max 180000). Used by verify-email and find-email.