curl --request POST \
--url https://app.spotzee.com/api/ext/generic/email/email-syntax-validator \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/x-www-form-urlencoded' \
--data email=jsmith@example.com{
"status": "success",
"data": {
"result": "Operation completed successfully"
}
}Validate email address syntax and format
curl --request POST \
--url https://app.spotzee.com/api/ext/generic/email/email-syntax-validator \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/x-www-form-urlencoded' \
--data email=jsmith@example.com{
"status": "success",
"data": {
"result": "Operation completed successfully"
}
}Bearer token authentication. Use format: Bearer YOUR_API_KEY
1Was this page helpful?