# Supported Documents

This endpoint allows you to retrieve a list of all documents supported by our [Document Checks](https://docs.complycube.com/documentation/api-reference/check-types/document-check) service.

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

### URL

<mark style="color:blue;">**GET**</mark> `https://api.complycube.com/v1/static/supportedDocuments`

Retrieves all supported document types and country combinations.

### Headers

<table><thead><tr><th width="252">Name</th><th width="97">Type</th><th>Description</th></tr></thead><tbody><tr><td><code>Authorization</code><mark style="color:red;">*</mark></td><td>string</td><td>The API <strong><code>live</code></strong> or <strong><code>test</code></strong> key.</td></tr></tbody></table>

### Example request

{% tabs %}
{% tab title="cURL" %}

```bash
curl -X GET https://api.complycube.com/v1/static/supportedDocuments \
     -H 'Authorization: <YOUR_API_KEY>' 
```

{% endtab %}

{% tab title="Node.js" %}

```javascript
const { ComplyCube } = require("@complycube/api");

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

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

{% endtab %}
{% endtabs %}

### Example response

{% tabs %}
{% tab title="Success (200)" %}

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

{% endtab %}
{% endtabs %}
