Documentation
Support

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_KEY

Enrich Email

POST/enrich

Retrieve full profile information for an email address.

Request Parameters

FieldTypeDescription
emailstringThe email address to enrich (Required).
sandboxbooleanEnable 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.