RWA

Show an RWA asset with documents and fractionalization

Requires scope rwa:read.

GET/api/v1/rwa/{assetId}Try it
iNote
Requires a key with the rwa:read scope, sent as Authorization: Bearer <api-key>. Keys missing the scope are rejected with 403 — see Authentication.

Path parameters

NameInTypeDescription
assetIdrequiredpathinteger

Errors

CodeMeaning
401Invalid or missing API key.
403The API key lacks the required scope for this operation.
404Asset not found.
cURL
curl https://gateway.kepto.xyz/api/v1/rwa/<assetId> \
  -H "Authorization: Bearer <api-key>"
200 · application/json
{
  "assetId": 0,
  "name": "string",
  "assetType": "string",
  "metadataURI": "string",
  "status": "None",
  "declaredValueKep": "string",
  "issuer": "string",
  "owner": "string",
  "attestor": "string",
  "registeredAt": 0,
  "attestedAt": 0,
  "attestationCount": 0,
  "attestationsRequired": 0,
  "attestationCurrent": true,
  "backingIntact": true,
  "documents": [
    {
      "index": 0,
      "dealId": 0,
      "merkleRoot": "string",
      "label": "string"
    }
  ],
  "fraction": {
    "sharesToken": "string",
    "fractionalizer": "string",
    "totalShares": "string"
  },
  "income": {
    "totalDistributedKep": "string"
  }
}