Skip to main content
POST
/
api
/
ext
/
generic
/
email
/
email-syntax-validator
Validate email syntax
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"
  }
}

Authorizations

Authorization
string
header
required

Bearer token authentication. Use format: Bearer YOUR_API_KEY

Body

application/x-www-form-urlencoded
email
string<email>
required
Minimum string length: 1

Response

Successfully validated email syntax

status
enum<string>
required
Available options:
success
data
any | null

Response data specific to the endpoint

Example:
{
  "result": "Operation completed successfully"
}