Equity
List stock tokens recognized by the equity vault
Requires scope equity:read. Staking locks on-chain stock tokens so the backing is cryptographically enforced: the underlying provably cannot be sold while a position exists. Lists every listed and delisted stock token with the total amount currently staked.
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/stocks \
-H "Authorization: Bearer <api-key>"200 · application/json
{
"stocks": [
{
"address": "string",
"symbol": "string",
"listed": true,
"totalLockedTokens": "string"
}
]
}