/v1/checks

Obtain all check executions, grouped by their containing account record.

Responses
  • application/json
  • application/json
Request Example for get/v1/checks
curl https://api.test.24idcheck.com/v1/v1/checks \
  --header 'Authorization: Basic username:password'
{
  "checks": [
    {
      "account_id": "string",
      "external_id": "string",
      "keysafe_id": "string",
      "type": "string",
      "check_executions": [
        {
          "id": "string",
          "type": "string",
          "performed_at": "2026-09-01T09:30:28.719Z"
        }
      ]
    }
  ]
}