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.
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
| Name | In | Type | Description |
|---|---|---|---|
| addressrequired | path | string | Equity token contract address. |
Errors
| Code | Meaning |
|---|---|
| 401 | Invalid or missing API key. |
| 403 | The API key lacks the required scope for this operation. |
| 404 | Token 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"
}