Equity

Show reserve backing for an equity token

Requires scope equity:read. Reads supply, reserves, backing ratio, and NAV per share for the given equity token contract.

GET/api/v1/equity/token/{address}Try 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.

Path parameters

NameInTypeDescription
addressrequiredpathstringEquity token contract address.

Errors

CodeMeaning
401Invalid or missing API key.
403The API key lacks the required scope for this operation.
404Token not found or not an equity token.
cURL
curl https://gateway.kepto.xyz/api/v1/equity/token/<address> \
  -H "Authorization: Bearer <api-key>"
200 · application/json
{
  "address": "string",
  "name": "string",
  "symbol": "string",
  "totalSupplyTokens": "string",
  "reservesTokens": "string",
  "reservesRatioBps": 0,
  "backingPercent": 0,
  "navPerShareKep": "string",
  "operator": "string",
  "attestor": "string",
  "settlement": "string"
}