Skip to main content
POST
/
api
/
ext
/
generic
/
email
/
email-provider-check
Check email provider
curl --request POST \
  --url https://app.spotzee.com/api/ext/generic/email/email-provider-check \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/x-www-form-urlencoded' \
  --data 'email_domain=<string>'
{
  "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_domain
required

Email address

dkim_test_type
enum<string>

DKIM test scope: quick (popular selectors) or full (comprehensive)

Available options:
quick,
full
Example:

"quick"

Response

Successfully identified email provider

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

Response data specific to the endpoint

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