RWA

List registered RWA assets

Requires scope rwa:read.

GET/api/v1/rwaTry 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.

Errors

CodeMeaning
401Invalid or missing API key.
403The API key lacks the required scope for this operation.
cURL
curl https://gateway.kepto.xyz/api/v1/rwa \
  -H "Authorization: Bearer <api-key>"
200 · application/json
{
  "assets": [
    {
      "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": [
        {}
      ]
    }
  ]
}