Equity
List open staked equity positions
Requires scope equity:read.
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
| Code | Meaning |
|---|---|
| 400 | No equity vault configured for this chain. |
| 401 | Invalid or missing API key. |
| 403 | The 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": [
{}
]
}
]
}