nvNeuralVerge
Enrichment

Email Finder API — Find a Work Email by Name & Domain

You know who you want to reach and where they work. This source takes a first name, a last name and a company domain, and returns the work email address, with a confidence rating and the provider that resolved it.

Example response
{
  "session_id": "5a70…",
  "kind": "email_finder",
  "domain": "acme.com",
  "first_name": "Jane",
  "last_name": "Doe",
  "human": "Found jane.doe@acme.com with high confidence.",
  "machine": {
    "firstName": "Jane",
    "lastName": "Doe",
    "domain": "acme.com",
    "found": true,
    "email": "jane.doe@acme.com",
    "confidence": "high",
    "provider": "…"
  },
  "total_points": 10
}
You send
First name, last name and a company domain
You get back
The work email address with a confidence rating
Coverage
Global, strongest on companies with their own mail domain.
Price
10 pts$10 per 1,000
Charged only when an address is found. A miss costs nothing, so a long list is safe to run.
Comparison

Ways to get this data

Three approaches teams use today, and where each one runs into trouble.

ApproachWhat it takesCostTrade-off
Guessing the patternWork out the company's format and construct the addressFreePatterns vary within one company, and a wrong guess costs you sender reputation
A dedicated finder toolAnother subscription and another seat to manageMonthly per seat or per creditUsually a separate silo from the rest of your data pipeline
NeuralVergeOne request, same key and format as every other source$10 per 1,000, misses not billedNot every person resolves — small companies and generic domains are hardest
Response

What you get back

Every field in the response shown above.

FieldTypeDescription
firstNamestringThe first name you sent.
lastNamestringThe last name you sent.
domainstringThe company domain you sent.
foundbooleanWhether an address was resolved — branch on this.
emailstringThe resolved work email address.
confidencestringHow strongly the address is corroborated.
providerstringWhich upstream resolved the address.
messagestringExplanatory note, present when there is something to say.
Integration

How to run it

The same lookup works from the app, the API, or as a tool an agent can call mid-task.

All three parameters are required. The `found` boolean in the response is the field to branch on, rather than testing whether `email` is empty.

curl -X POST https://api.neuralverge.ai/functions/v1/run-email-finder \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "domain": "acme.com",
    "first_name": "Jane",
    "last_name": "Doe"
  }'
Use cases

What teams use it for

Where this field shows up in an actual workflow.

Building an outbound list

Turn a list of names and companies into addresses you can actually send to.

Filling gaps in the CRM

Recover addresses for contacts that came in without one.

Reaching a named decision maker

You found the right person on a company page; this gets you the way to reach them.

Agent-driven prospecting

Let an agent resolve the address as a step rather than as a separate tool.

Coverage & limits

Coverage, freshness and limits

What this source covers, how fresh it is, and where it stops.

Coverage

Global, strongest on companies with their own mail domain.

Freshness

Resolved at request time.

Handling

This source returns personal data. Use it for legitimate business purposes under your own lawful basis, honour deletion and opt-out requests, and check the acceptable use policy for what is out of bounds.

What it will not do
  • Generic mailbox providers are not company domains and will not resolve a specific person.
  • Very small companies often have no discoverable pattern at all.
  • A high confidence rating is a strong signal, not a delivery guarantee — validate before a large send.
FAQ

Questions, answered

Opposite directions. The finder goes from a person and a company to an address. Reverse email lookup goes from an address to the person behind it.

Related

Related sources

Try email finder on your own data

One request format across every source in the catalog.

Get started