Skip to main content
POST
/
v1
/
domains
/
{id}
/
email-authentication
/
check
Check domain email authentication
curl --request POST \
  --url https://api.bizzyco.ai/v1/domains/{id}/email-authentication/check \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{}'
{
  "data": {
    "spf": true,
    "dkim": true,
    "receiving": true,
    "dmarc": true,
    "checkedAt": "2023-11-07T05:31:56Z"
  },
  "meta": {
    "pagination": {
      "limit": 123,
      "offset": 123,
      "hasMore": true,
      "total": 123
    }
  }
}

Authorizations

Authorization
string
header
required

API key authentication via Bearer token

Path Parameters

id
string<uuid>
required

Domain UUID

Body

application/json

The body is of type object.

Response

Check domain email authentication

data
object
required
meta
object
Last modified on June 15, 2026