Skip to main content
POST
/
api
/
ext
/
generic
/
email
/
dmarc-lookup
Lookup DMARC record
curl --request POST \
  --url https://app.spotzee.com/api/ext/generic/email/dmarc-lookup \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/x-www-form-urlencoded' \
  --data domain=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
domain
string
required

Domain name

Example:

"example.com"

Response

Successfully retrieved DMARC record

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

Response data specific to the endpoint

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