Securitize Connect API
  • Securitize iD
  • General information
  • Scope of Access
  • User Interface & Landing page
  • Accessing the APIs
  • OAuth 2.0
    • Authentication
    • Access Token
    • Refresh Access Token
    • Application Configuration
  • Verification Information
  • Investor Information
    • New Investor Example
    • Individual Investor Example
    • Entity Investor Example
  • Investor Documents
  • Legal Signers
  • Verification Details
  • Wallets
  • Whitelisting
    • Whitelisting redirected URLs
Powered by GitBook
On this page

Was this helpful?

  1. Investor Information

Individual Investor Example

How to get information from an investor (full response)

Get Investor Information ( Individual )

GET 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

{
  "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
}
PreviousNew Investor ExampleNextEntity Investor Example

Last updated 4 years ago

Was this helpful?