Skip to main content
GET
/
verifications
List Verifications for Account
curl --request GET \
  --url https://{defaultHost}/verifications \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "<string>",
      "first_name": "<string>",
      "last_name": "<string>",
      "date_of_birth": "<string>",
      "business_name": "<string>",
      "business_structure": "<string>",
      "country": "<string>",
      "address": {},
      "session_url": "<string>",
      "rfis": [
        {
          "id": "<string>",
          "type": "<string>",
          "description": "<string>",
          "error_message": "<string>",
          "requested_files": [
            {
              "category": "<string>",
              "kind": "<string>",
              "is_optional": true
            }
          ],
          "created_at": "<string>"
        }
      ],
      "created_at": "<string>",
      "updated_at": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

An account API key, account scoped JWT, app API key, or user OAuth token.

Headers

Api-Version-Date
string<date>

Pins the request to a dated API version. When omitted, the request uses the original (2025-01-01) request/response shapes, so existing unversioned callers are never broken. Generated SDKs always send the latest version they were built against. An unrecognized value is rejected with a 400. The schemas documented here always describe the latest version.

Example:

"2026-06-09"

Query Parameters

account_id
string
required

The account ID to list verifications for (biz_ tag).

Response

verifications listed

data
object[]