Skip to main content

Enrow on Clay

Enrow is available as a native provider on Clay. You can use it directly from your Clay tables using your Clay credits:
ActionClay Credits
Find email0.2 per find
Verify email0.1 per verification
Find phone20 per phone

Using Your Own Enrow API Key

For more control and better pricing, you can use your own Enrow API key directly in Clay via the HTTP API enrichment. This requires a Clay Growth plan (starting at 495/momonthly,495/mo monthly, 446/mo annually — see pricing) which gives you access to HTTP API actions.

Setup

  1. Open your Clay table
  2. Click “Add Enrichment” → search for “HTTP API”
  3. Configure the request:
Method: POST
URL: https://api.enrow.io/email/find/single

Headers:
  x-api-key: YOUR_ENROW_API_KEY
  Content-Type: application/json

Body:
{
  "company_domain": /company_domain,
  "first_name": /first_name,
  "last_name": /last_name
}
In Clay, use /column_name to reference columns from your table.

Retrieving Results

Enrow is asynchronous — the POST returns a search ID. Two options: Option A: Webhooks (Recommended) Add a webhook URL in your request:
{
  "company_domain": /company_domain,
  "first_name": /first_name,
  "last_name": /last_name,
  "settings": {
    "webhook": "YOUR_CLAY_WEBHOOK_URL"
  }
}
Option B: Delay + GET
  1. Add a Delay step (5-10 seconds)
  2. Add another HTTP API step:
Method: GET
URL: https://api.enrow.io/email/find/single?id={id}
Headers:
  x-api-key: YOUR_ENROW_API_KEY

Available Endpoints in Clay

ActionEndpointEnrow Credits
Find emailPOST /email/find/single1 per found
Verify emailPOST /email/verify/single0.25 per check
Find phonePOST /phone/single50 per found

Alternatives to Clay

Cargo is a more affordable alternative starting at $250/mo. It’s less restrictive and gives you more freedom in orchestration, making it a great option if you want to control your stack costs. The tradeoff is that it’s a bit more technical than Clay’s drag-and-drop tables.See Cargo Integration →
The most flexible and cost-effective option is to build your own enrichment workflows using the Enrow API directly. Use our llms-full.txt with Claude or any LLM to generate integration code in minutes.

Tips

Only enrich contacts that are missing data — filter by decision makers, target companies, or contacts without emails. This saves credits.
Set up Enrow as your primary source, then fall back to other providers using Clay’s “Run if” conditions.
Even with Enrow’s determinist verification, run a verification step before campaigns for maximum deliverability.

Troubleshooting

“Unauthorized” Error
  • Check your API key is correct
  • Verify it’s in the x-api-key header (not Authorization)
No Results Returned
  • Check that company domain is valid
  • Try with company_name instead
  • Some contacts may genuinely not have findable emails

Need Help?