website logo
⌘K
Email Verification API
API Overview
Authentication
Rate Limits
Response Headers
Response Codes
Reference
Code Examples
Data Privacy API
Data Privacy API Overview
Reference
Code Examples
Webhooks
Webhooks Overview
Retries and Errors
Managing Webhooks
Verifying Webhooks
Event Triggers
Docs powered by archbee 
5min

Code Examples

Single verification endpoint

Shell
|
curl --request GET \
  --url 'https://api.mailfloss.com/verify?email={email_address}&api_key={api_key}'




Batch verification endpoint

Shell
|
curl -X POST \
  -o - https://api.mailfloss.com/batch-verify?api_key={api_key} \
  -d '{"emails":["email_address1", "email_address2"]}' -H "Content-Type: application/json"




Get batch verification job status

Shell
|
curl --request GET \
  --url 'https://api.mailfloss.com/batch-verify/{id}/status?api_key={api_key}'




Get batch verification results of completed job

Shell
|
curl --request GET \
  --url 'https://api.mailfloss.com/batch-verify/{id}?api_key={api_key}'




Updated 03 Mar 2023
Did this page help you?
Yes
No
UP NEXT
Data Privacy API Overview
Docs powered by archbee 
TABLE OF CONTENTS
Single verification endpoint
Batch verification endpoint
Get batch verification job status
Get batch verification results of completed job