Enrichgate

API Reference

Base URL: https://api.enrichgate.com  ·  Authentication: Authorization: Bearer <your-api-key>

Operations

email_find

Find a work email via waterfall across 40+ providers.

name: stringdomain: string
email_validate

Validate an email address via ZeroBounce and others.

email: string
contacts_by_role

Find people with a given role at a company domain.

domain: stringrole: stringlimit?: number (max 50)
company_enrich

Get company profile: headcount, industry, funding, tech stack.

domain: string

Endpoints

POST/v1/runRun any operation through the waterfall

Request body

{
  "operation": "email_find",
  "name": "Jan Jezek",
  "domain": "enrichgate.com"
}

Response

{
  "hit": true,
  "email": "jan@enrichgate.com",
  "provider": "apollo",
  "credits_used": 1
}
GET/v1/creditsCheck your credit balance

Response

{
  "balance": 99,
  "used_30d": 1
}
GET/v1/runsLast 50 run events

Response

[
  {
    "id": "run_01",
    "operation": "email_find",
    "hit": true,
    "credits": -1,
    "created_at": "2026-05-28T09:54:00Z"
  }
]

CLI quickstart

# Install
$curl -s https://api.enrichgate.com/cli/install | bash
# Authenticate
$enrich auth --key eg_••••••••
# Run email find
$enrich run email_find --name "Jan Jezek" --domain enrichgate.com
✓ jan@enrichgate.com (apollo · 0.3s · -1 credit)

Ready to start?

Get your API key in the dashboard. BYOK is always free.

Go to dashboard