RWA
Show an RWA asset with documents and fractionalization
Requires scope rwa:read.
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
| Name | In | Type | Description |
|---|---|---|---|
| assetIdrequired | path | integer |
Errors
| Code | Meaning |
|---|---|
| 401 | Invalid or missing API key. |
| 403 | The API key lacks the required scope for this operation. |
| 404 | Asset 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"
}
}