Skip to main content
Retrieves investments for a specific STO.

Query Parameters

  • tokenSymbol (required): Token symbol
  • id (required): STO ID

Example

curl --request GET \
  --url 'https://api.sandbox.brickken.com/get-investments-by-sto-id?tokenSymbol=EXMPL&id=123' \
  --header 'x-api-key: YOUR_API_KEY'

Response

{
  "investments": [
    {
      "investorAddress": "0x...",
      "amount": "1000",
      "timestamp": 1234567890
    }
  ]
}