> For the complete documentation index, see [llms.txt](https://sec-connect-api-docs.securitize.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://sec-connect-api-docs.securitize.io/investor-documents.md).

# Investor Documents

## Get Investor Document Information

## Investor Documents List

<mark style="color:blue;">`GET`</mark> `https://sec-id-api.securitize.io/v1/{clientId}/investor/documents`

#### Path Parameters

| Name     | Type   | Description                                       |
| -------- | ------ | ------------------------------------------------- |
| clientId | string | Your application Client Id provided by Securitize |

#### Headers

| Name          | Type   | Description                                    |
| ------------- | ------ | ---------------------------------------------- |
| access-token  | string | Investor accessToken                           |
| authorization | string | Your application secret provided by Securitize |

{% tabs %}
{% tab title="200 Returns list of investor documents" %}

```
{
  "status": 0,
  "error": {},
  "success": true,
  "data": [
    {
      "documentId": "string",
      "docType": "passport",
      "docCategory": "identification",
      "side": "front",
      "fileName": "30dec9b7-c2b8-4d3b-99ab-6bfde86a1a00.jpeg",
      "thumbnail": "string",
      "fileType": "image/jpeg",
      "verificationStatus": "pending",
      "createDate": "2020-05-27T18:08:53.501Z"
    },
    ...
  ]
}
```

{% endtab %}
{% endtabs %}

## Preview or Download document

## Get Document URL based on documentId

<mark style="color:blue;">`GET`</mark> `https://sec-id-api.securitize.io/v1/{clientId}/investor/documents/{documentId}/view`

Get temporary link to view or download document

#### Path Parameters

| Name       | Type   | Description                                       |
| ---------- | ------ | ------------------------------------------------- |
| clientId   | string | Your application Client Id provided by Securitize |
| documentId | string | Id of the selected document to view               |

#### Headers

| Name          | Type   | Description                                    |
| ------------- | ------ | ---------------------------------------------- |
| access-token  | string | Investor accessToken                           |
| authorization | string | Your application secret provided by Securitize |

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

```
{
  "status": 0,
  "error": {},
  "success": true,
  "data": {
    "url": "https://staging-testing-documents.s3.us-east-2.amazonaws.com/documents/5df248a0856b2b202eab3ebc/23fe3c65-50c9-4024-b254-784b0d529dae.jpeg?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=b5970e428c24e3bb&X-Amz-SignedHeaders=host"
  }
}
```

{% endtab %}
{% endtabs %}
