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
JavaScript Widget
JavaScript Widget Overview
Installing the Widget
Widget Configuration Options
Docs powered by
Archbee
Email Verification API

Code Examples

5min

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 \
  --url 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 11 May 2023
Did this page help you?
PREVIOUS
Reference
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
Docs powered by
Archbee