Today's Usage Loading...

Email Lookup

Enter an email to search

API Keys

Loading...

API Documentation

Authentication

Include your API key as header or query parameter:

# Header (recommended)
X-API-Key: your_api_key

# Query parameter
?api_key=your_api_key

Endpoints

GET /v1/email/{email}
Lookup a single email address
GET /v1/email?email={email}
Alternative query parameter format
POST /v1/bulk
Bulk lookup (max 100 emails per request)
Body: {"emails": ["a@b.com", "c@d.com"]}

Rate Limits

500 requests per second. Exceeding returns HTTP 429.

Success Response

{
  "success": true,
  "count": 2,
  "results": [
    {
      "name": "John Doe",
      "email": "john@example.com",
      "phone1": "5551234567"
    },
    {
      "name": "John Doe",
      "email": "john@example.com",
      "phone1": "5559876543",
      "phone2": "5551111111"
    }
  ]
}

Error Responses

401 Unauthorized
{"success": false, "error": "Invalid API key"}
400 Bad Request
{"success": false, "error": "Email required"}
429 Too Many Requests
{"success": false, "error": "Rate limit exceeded"}

Search Script

Python script for bulk email lookups. Your API key is pre-configured.

Install Python

Windows: Download from python.org/downloads — check "Add to PATH" during install.

Mac: brew install python3 or download from python.org/downloads

Linux: sudo apt install python3 (Debian/Ubuntu) or sudo dnf install python3 (Fedora)

Usage

Create a text file with one email per line, then run:
python3 search.py emails.txt

search.py

Your API key is embedded below.