Equity

List open staked equity positions

Requires scope equity:read.

GET/api/v1/equity/positionsTry it
iNote
Requires a key with the equity:read scope, sent as Authorization: Bearer <api-key>. Keys missing the scope are rejected with 403 — see Authentication.

Errors

CodeMeaning
400No equity vault configured for this chain.
401Invalid or missing API key.
403The API key lacks the required scope for this operation.
cURL
curl https://gateway.kepto.xyz/api/v1/equity/positions \
  -H "Authorization: Bearer <api-key>"
200 · application/json
{
  "positions": [
    {
      "positionId": 0,
      "stockToken": "string",
      "stockSymbol": "string",
      "amountTokens": "string",
      "opener": "string",
      "owner": "string",
      "openedAt": 0,
      "metadataURI": "string",
      "documents": [
        {}
      ]
    }
  ]
}