Skip to main content
POST
/
api
/
ext
/
generic
/
email
/
temporary-email-checker
Check for temporary email
curl --request POST \
  --url https://app.spotzee.com/api/ext/generic/email/temporary-email-checker \
  --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 checked temporary email status

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

Response data specific to the endpoint

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