# New Investor Example

## Get Investor Information ( brand new investor )

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

Example for a brand new investor who just registered ( min available data )

#### 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 " %}

```
{
  "status": 200,
  "data": {
    "investorId": "strinf",
    "createDate": "2020-05-27T20:24:42.304Z",
    "fullName": "",
    "tfaEnabled": false,
    "language": "EN",
    "email": "string",
    "verificationStatus": "Enum [ none, processing, updates-required, verified, manual-review, rejected, expired ]",
    "details": {
      "tax": [],
      "address": {
        "countryCode": "IL"
      }
    }
  },
  "error": null,
  "success": true
}
```

{% endtab %}
{% endtabs %}
