REST API Endpoint
POST https://hashedemails.com/api/hash_email
Simple and secure email hashing endpoint - no authentication required.
Request Format
{ "email": "example@domain.com" // Required: Email address to hash }
Response Format
{ "email": "example@domain.com", "hash": "973dfe463ec85785f5f95af5ba3906eedb2d931c24e69824a89ea65dba4e813b", "batch_id": "a7aba982-9bbe-4dfb-bdb5-e2e2f1b91d9f" }
Example Usage (cURL)
curl -X POST https://hashedemails.com/api/hash_email \ -H "Content-Type: application/json" \ -d '{"email": "example@domain.com"}'