Skip to main content

Enrow on Cargo

Cargo is a revenue orchestration platform that lets you build enrichment workflows with full flexibility. Plans start at $250/mo (see pricing). You can use your Enrow API key directly in Cargo — all plans include HTTP API access. This gives you full control over your enrichment stack at the best cost.

Setup

Step 1: Store Your API Key

  1. In Cargo, go to Secrets
  2. Add a new secret: ENROW_API_KEY with your key

Step 2: Add an HTTP Request Action

In your Cargo workflow, add an HTTP Request action and configure it: Find Email:
Method: POST
URL: https://api.enrow.io/email/find/single

Headers:
  x-api-key: {{secrets.ENROW_API_KEY}}
  Content-Type: application/json

Body:
{
  "company_domain": "{{lead.company_domain}}",
  "first_name": "{{lead.first_name}}",
  "last_name": "{{lead.last_name}}",
  "settings": {
    "webhook": "{{cargo.webhook_url}}"
  }
}
Verify Email:
Method: POST
URL: https://api.enrow.io/email/verify/single

Headers:
  x-api-key: {{secrets.ENROW_API_KEY}}
  Content-Type: application/json

Body:
{
  "email": "{{lead.email}}"
}
Find Phone:
Method: POST
URL: https://api.enrow.io/phone/single

Headers:
  x-api-key: {{secrets.ENROW_API_KEY}}
  Content-Type: application/json

Body:
{
  "linkedin_url": "{{lead.linkedin_url}}"
}

Step 3: Handle Results

Use a Webhook Listener in your workflow to receive Enrow results, or add a Delay + GET step to poll for results. Map response fields to your lead:
Enrow FieldLead Field
emailEmail
qualificationEmail Qualification
phonePhone
country_codePhone Country

Available Endpoints

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

Cargo vs Clay

CargoClay
Starting price$250/mo$495/mo (for API access)
HTTP API accessAll plansGrowth plan only
FlexibilityFull workflow orchestrationTable-based, simpler
Learning curveMore technicalEasier drag-and-drop
Cargo is the best option if you want to control your stack costs while keeping full orchestration freedom. Clay is simpler but more restrictive and more expensive for API usage.

Example Workflow

1

Trigger

New lead enters from Salesforce, HubSpot, or CSV import
2

Enrich

Enrow: Find Email → Verify Email → Find Phone
3

Filter

Keep only leads with qualification: "valid" emails
4

Push

Update your CRM and trigger outreach sequences

Tips

Pass a webhook URL in your Enrow requests to get results in real-time without polling.
Use Cargo’s conditional logic to try Enrow first, then fall back to other providers if no result.
For 100+ contacts, use the bulk endpoints (/email/find/bulk, /email/verify/bulk, /phone/bulk) for better performance.

Build Your Own

Want even more control? Use the Enrow API directly in your own code. Our llms-full.txt makes it easy to generate integration code with Claude or any LLM in minutes.

Need Help?