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.

GET/api/v1/equity/stocksTry 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/stocks \
  -H "Authorization: Bearer <api-key>"
200 · application/json
{
  "stocks": [
    {
      "address": "string",
      "symbol": "string",
      "listed": true,
      "totalLockedTokens": "string"
    }
  ]
}