# Individual Investor Example

## Get Investor Information ( Individual )

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

Example for individual investor data ( full individual 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 Example of individual investor information" %}

```
{
  "status": 200,
  "data": {
    "investorId": "string",
    "createDate": "string",
    "fullName": "string",
    "tfaEnabled": "boolean",
    "language": "string",
    "email": "string",
    "verificationStatus": "Enum [ none, processing, updates-required, verified, manual-review, rejected, expired ]",
    "details": {
      "investorType": "Enum [individual, entity]",
      "firstName": "string",           
      "middleName": "string",
      "lastName": "string",
      "birthCountry": "string",
      "birthCity": "string",
      "mainIdentificationNumber": "string",
      "gender": "Enum [male, female]",
      "tax": [
        {
          "id": "string",
          "taxCountryCode": "string",
          "taxId": "string"
        },
        ...
      ],
      "phone": {
        "code": "string",
        "number": "string",
        "fullNumber": "string"
      },
      "address": {
        "countryCode": "string",
        "state": "string",   // only for US
        "city": "string",
        "entrance": "string",
        "houseNumber": "string",
        "street": "string",
        "zip": "string"
      },
      "birthday": "date"
    }
  },
  "error": null,
  "success": true
}
```

{% endtab %}
{% endtabs %}
