EveryMailFinder's Email Scraper API allows you to programmatically extract email addresses from websites. This API is designed for developers who want to integrate email scraping capabilities into their own applications, workflows, or services.
The API follows RESTful principles and returns JSON responses. All requests must be authenticated using an API key.
Base URL
https://api.everymailfinder.com/v1
Quick Start
Generate your API key from the management section
Make a POST request to /scrape with a list of URLs
Receive a job ID to check the status of your scraping request
Poll the job status endpoint until completion
Retrieve your results containing extracted emails
Authentication
All API requests must include your API key in the Authorization header.
// Example of including API key in a request
curl -X POST \
https://api.everymailfinder.com/v1/scrape \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"urls": ["https://example.com"]}'
Replace YOUR_API_KEY with your actual API key, which you can generate in the API Key Management section.
Important: Keep your API key secure and never expose it in client-side code. Each API key is associated with your account and usage limits.
API Endpoints
Create Scraping Job
POST/scrape
Submit a list of URLs to scrape for email addresses. Returns a job ID that can be used to check the status and retrieve results.
We use cookies to enhance your experience, analyze traffic, and for marketing purposes. By clicking "Accept All", you consent to the use of all cookies. You can manage your preferences in settings.