GET
/
get-api-investments-by-sto-id
/
{id}
{tokenSymbol}
Get investments associated with a specific STO ID
curl --request GET \
  --url https://api.sandbox.brickken.com/get-api-investments-by-sto-id/{id}{tokenSymbol} \
  --header 'x-api-key: <api-key>'
{
  "offeringTransactionsList": [
    {
      "id": "42594b34-1c1f-4e03-9dd2-78b16ff9826e",
      "date": "2024-06-06T09:35:43.106Z",
      "txHash": "0xabcdef1234567890abcdef1234567890abcdef1234567890abcdef1234567890",
      "user": "investor.email@example.com",
      "currency": "USDC",
      "amountInUSD": "500.00",
      "status": "invest"
    }
  ],
  "total": 42
}

Authorizations

x-api-key
string
header
required

Path Parameters

id
string
required

The unique identifier (UUID) of the STO.

tokenSymbol
string
required

The unique identifier (UUID) of the STO.

Response

200 - application/json

Successful response - Investments for the specified STO retrieved.

Contains a list of offering transactions and the total count.