For the complete documentation index, see llms.txt. This page is also available as Markdown.

Supported Documents

Retrieve supported identity document types and country combinations for KYC document verification and OCR workflows.

This endpoint allows you to retrieve a list of all documents supported by our Document Checks service.

The lists are updated periodically, so the returned values are expected to change.

URL

GET https://api.complycube.com/v1/static/supportedDocuments

Retrieves all supported document types and country combinations.

Headers

Name
Type
Description

Authorization*

string

The API live or test key.

Example request

curl -X GET https://api.complycube.com/v1/static/supportedDocuments \
     -H 'Authorization: <YOUR_API_KEY>' 
const { ComplyCube } = require("@complycube/api");

const complycube = new ComplyCube({ apiKey: "<YOUR_API_KEY>" });

const screeningLists = await complycube.static.listSupportedDocuments();

Example response

{
  "document_check": {
    "passport": {
      "AE": {
        "sides": 1
      },
      "AD": {
        "sides": 1
      },
      "AE": {
        "sides": 1
      },
      "AF": {
        "sides": 1
      }
    }
    ...
  }
}