Skip to main content
POST
/
api
/
v2
/
accounts
/
test
/
vitals
Test account vitals
curl --request POST \
  --url https://api.instantly.ai/api/v2/accounts/test/vitals \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "accounts": [
    "user@example.com"
  ]
}
'
{
  "status": "success",
  "success_list": [
    {
      "domain": "example.com",
      "allPass": true,
      "mx": true,
      "spf": true,
      "dkim": true,
      "dmarc": true
    }
  ],
  "failure_list": [
    {
      "domain": "example.com",
      "allPass": false,
      "mx": false,
      "spf": false,
      "dkim": false,
      "dmarc": false
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
accounts
string[]

Response

Default Response

status
string
Example:

"success"

success_list
object[]
failure_list
object[]