Make your first Enrich API call in under a minute.Prerequisites#
An API key (every new account gets 100 free credits)
Step 1: Get your API key#
3.
Copy the key — it starts with sk_ and is only shown once.
Step 2: Validate an email#
Step 3: Check the response#
{
"success": true,
"data": {
"email": "test@example.com",
"status": "invalid",
"subStatus": "no_mx_record",
"freeEmail": false,
"disposable": false,
"catchAll": false
},
"meta": {
"requestId": "req_abc123",
"creditsUsed": 1,
"creditsRemaining": 99
}
}
The meta object tells you how many credits were used and how many you have left.Step 4: Try the Email Finder#
{
"success": true,
"data": {
"email": "jane.doe@example.com",
"confidence": "high",
"firstName": "Jane",
"lastName": "Doe",
"domain": "example.com"
},
"meta": {
"requestId": "req_def456",
"creditsUsed": 10,
"creditsRemaining": 89
}
}
Modified at 2026-02-02 17:03:32