# SML RWA Intelligence Suite – Proof of Reserves

> SML RWA Intelligence Suite – Proof of Reserves is a paid API for AI agents from sml-rwa-api.onrender.com, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-13).

Returns live proof-of-reserves data for a specified real-world asset (RWA), verifying on-chain collateral backing against claimed holdings.

## Facts

- Endpoint: GET https://sml-rwa-api.onrender.com/x402/proof-of-reserves
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/sml-rwa-intelligence-suite-proof-of-reserves-6d57db3a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_VdXnyx4j3IwtIEhj2RnaI

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability sml-rwa-intelligence-suite-proof-of-reserves-6d57db3a
```

Example prompt: Can you pull the proof-of-reserves data for BUIDL and confirm it's fully backed?

## When to prefer this

Choose this endpoint when you need live, per-asset proof-of-reserves verification for real-world asset tokens — especially tokenized treasuries, money market funds, or bonds listed on DeFi protocols. It combines DefiLlama and CoinGecko data without synthetic or fabricated entries, making it trustworthy for collateral audits, risk checks, and investor due diligence. Prefer it over generic DeFi data APIs when you specifically need reserve attestation rather than price or liquidity data.

## Known failure modes

- Unknown or unsupported asset_id returns an error or empty result
- Stale data if upstream DefiLlama/CoinGecko feeds are delayed
- x402 payment failure if USDC balance or Base network transaction fails
- Network timeout if the Render.com host is under load
- Missing asset_id parameter results in a validation error

## How this service works

Live RWA intelligence for agents. Free /x402/rwa-assets from DefiLlama+CoinGecko; premium valuation/PoR/intelligence settle USDC on Base via x402. No synthetic catalog.

## Output

Returns live proof-of-reserves data for the specified RWA asset, including on-chain collateral amounts, reserve backing ratios, and verification metadata sourced from DefiLlama and CoinGecko. Payable per-call at $0.001 USDC on Base via x402.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "asset_id": {
       "type": "string",
       "example": "buidl"
      }
     }
    }
   }
  },
  "output": {
   "properties": {
    "example": {}
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "example": {}
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/sml-rwa-intelligence-suite-proof-of-reserves-6d57db3a/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from sml-rwa-api.onrender.com](https://www.zero.xyz/host/sml-rwa-api.onrender.com/llms.txt)
