mailfloss API & Webhooks
Navigate through spaces
⌘
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
Integration Settings API
Integration Settings 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
4min
Single verification endpoint
Shell
1
curl
--request
GET
\
2
--url
'https://api.mailfloss.com/verify?email={email_address}&api_key={api_key}'
curl --request GET \ --url 'https://api.mailfloss.com/verify?email={email_address}&api_key={api_key}'
Batch verification endpoint
Shell
1
curl
-X
POST
\
2
--url
https://api.mailfloss.com/batch-verify?api_key
=
{
api_key
}
\
3
-d
'{"emails":["email_address1", "email_address2"]}'
-H
"Content-Type: application/json"
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
1
curl
--request
GET
\
2
--url
'https://api.mailfloss.com/batch-verify/{id}/status?api_key={api_key}'
curl --request GET \ --url 'https://api.mailfloss.com/batch-verify/{id}/status?api_key={api_key}'
Get batch verification results of completed job
Shell
1
curl
--request
GET
\
2
--url
'https://api.mailfloss.com/batch-verify/{id}?api_key={api_key}'
curl --request GET \ --url 'https://api.mailfloss.com/batch-verify/{id}?api_key={api_key}'
Updated 21 Apr 2024
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