> 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-information.md).

# Investor Information

## Get Investor Information

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

Used to get investor information

#### 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 investor information according to investor type ( null | individual | entity )" %}

```
{
  "status": 0,
  "data": {
    "investorId": "5defbf8130b4212eb55044b4",
    "email": "string",
    "fullName": "string",
    "verificationStatus": "Enum [ none, processing, updates-required, verified, manual-review, rejected, expired ]",
    "tfaEnabled": true,
    "language": "string",
    "createDate": "2017-07-21T17:32:28.000Z",
    "details": {
      "firstName": "string",
      "lastName": "string",
      "middleName": "string",
      "birthday": "string",
      "phone": {
        "code": "+380",
        "number": "8888888",
        "fullNumber": "+3808888888"
      },
      "investorType": "Enum [individual, entity]",
      "gender": "Enum [male, female]",
      "birthCountry": "string",
      "birthCity": "string",
      "birthState": "string",
      "mainIdentificationNumber": "string",
      "entityName": "string",
      "businesses": "string",
      "entityType": "string",
      "entityIdNumber": "string",
      "tax": [
        {
          "taxId": "string",
          "taxCountryCode": "string"
        }
      ],
      "address": {
        "street": "string",
        "houseNumber": "string",
        "entrance": "string",
        "city": "string",
        "countryCode": "string",
        "state": "string",   // only for US
        "zip": "string"
      }
    }
  },
  "error": {},
  "success": true
}
```

{% endtab %}
{% endtabs %}
