cURL
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 } ] }
Requires one of the following scopes: accounts:read, accounts:all, all:read, all:all
accounts:read
accounts:all
all:read
all:all
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Default Response
"success"
Show child attributes