logo
EmailEmail Finding

Email Finding

Finds email addresses for a list of people based on first name, last name, and company domain. Results are delivered to your webhook URL when processing is complete.

Pricing: 2 credits per person in the request.

How it works:

  1. Submit a list of people with their names and company domains
  2. Provide your webhook URL where results will be delivered
  3. Receive an immediate response with a job id and state
  4. When processing completes, results are POSTed to your webhook
  5. You can also poll the results using the Email Finding Inquiry endpoint
curl -X POST "https://v3-api.texau.com/api/v1/email_finding" \
  -H "Content-Type: application/json" \
  -H "x-api-key: YOUR_API_KEY" \
  -d '{
  "webhook": "https://yourapp.com/webhooks/email-results",
  "data": [
    {
      "refId": "ref-001",
      "firstname": "Linda",
      "lastname": "Smith",
      "domain": "acme.com"
    },
    {
      "refId": "ref-002",
      "firstname": "John",
      "lastname": "Doe",
      "domain": "acme.com"
    }
  ]
}'
{
  "id": "1ea83076-8a42-47c1-bd2b-25da8085b3a7",
  "state": "DONE"
}
POST
/email_finding
POST
API Key (header: x-api-key)
x-api-keystring
Required

Your TexAu API key. Contact TexAu to obtain one.

Your TexAu API key. Contact TexAu to obtain one.
Content-Typestring
Required

The media type of the request body

Options: application/json
webhookstring
Required

Your webhook URL where results will be delivered

dataarray
Required

List of people to find emails for

Request Preview
Response

Response will appear here after sending the request

Authentication

header
x-api-keystring
Required

API Key for authentication. Your TexAu API key. Contact TexAu to obtain one.

Body

application/json
webhookstring
Required

Your webhook URL where results will be delivered

dataarray
Required

List of people to find emails for

Responses

idstring

Job ID — use this to check status via Email Finding Inquiry

statestring
Allowed values:DONEPROCESSINGFAILED