Investments

get

Get investments

Authorizations
Query parameters
contractAddressstringRequired

The addres of the contract.

Example: 0x1234567890abcdef1234567890abcdef12345678Pattern: ^(0x)[0-9a-fA-F]{40}$
Responses
200

Default Response

application/json
get
/investments
GET /investments?contractAddress=0x1234567890abcdef1234567890abcdef12345678 HTTP/1.1
Host: 
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
[
  {
    "id": 1,
    "investorSignature": [
      "text"
    ],
    "tokenName": "text",
    "vaultName": "text",
    "quantity": 1,
    "unitAmount": 1,
    "vaultAddress": "text",
    "investorAddress": "text",
    "securityTokenAddress": "text",
    "securityToken": {
      "contractAddress": "text",
      "managerAddress": "text",
      "managerSignature": "text",
      "adminAddress": "text",
      "vaultAddresses": [
        "text"
      ],
      "instrument": "text",
      "segment": "text",
      "concentration": "text",
      "totalInvestmentAmount": 1,
      "expired": true,
      "createdAt": "2025-11-03T00:01:34.687Z",
      "expirationDate": "2025-11-03T00:01:34.687Z"
    }
  }
]

Was this helpful?