Introduction
OfniMail is a powerful email intelligence API designed to help you understand your users. By providing a single email address, you can retrieve full professional profiles, company firmographics, and deliverability risk scores.
Base URL: All API requests are made over HTTPS to https://api.ofnimail.com/v1.
Authentication
Authenticate your requests by including your secret API key in the Authorization header. Your API keys carry significant privileges, so be sure to keep them secure!
Authorization: Bearer YOUR_API_KEYEnrich Email
POST
/enrichRetrieve full profile information for an email address.
Request Parameters
| Field | Type | Description |
|---|---|---|
| string | The email address to enrich (Required). | |
| sandbox | boolean | Enable test mode (Returns mock data). |
Response Schema
{
"id": "enr_92817263",
"status": "success",
"data": {
"person": {
"full_name": "Alex Smith",
"title": "Engineering Manager",
"location": "San Francisco, CA"
},
"company": {
"name": "Stripe",
"domain": "stripe.com",
"employees": "5000-10000"
}
}
}Rate Limiting
Free tier accounts are limited to 5 requests per minute. Exceeding this will return a 429 Too Many Requests error.