# ScriptMasterLabs RWA Intelligence API

> ScriptMasterLabs RWA Intelligence API is a paid API for AI agents from acp-x402-discovery.onrender.com, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-14).

Provides pay-per-call real-world asset (RWA) intelligence data including tokenized asset aggregates, risk metrics, and compliance signals, settled in USDC on Base via x402.

## Facts

- Endpoint: GET https://acp-x402-discovery.onrender.com/x402/rwa-intelligence
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/scriptmasterlabs-rwa-intelligence-api-def081be
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_CoHKgqiJ5-HyNyQYNl4le

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 scriptmasterlabs-rwa-intelligence-api-def081be
```

Example prompt: Can you pull RWA intelligence data for tokenized treasuries with a risk score below 40 — list all available assets in that class using the buidl asset ID?

## When to prefer this

Choose this endpoint when you need pay-per-call RWA intelligence data — particularly tokenized asset aggregates, risk-filtered treasury data, or on-chain compliance signals — and you are operating in a crypto-native, x402-payment-enabled environment settled on Base. Prefer this over general crypto data APIs when the specific focus is real-world asset tokenization, risk classification, or RWA compliance metrics.

## Known failure modes

- Payment not settled in USDC on Base — returns 402 Payment Required
- Invalid or unknown asset ID — returns empty or error response
- Malformed constraint parameter (e.g. unsupported class or risk syntax) — may return 400 or empty results
- Service unavailability on Render-hosted infrastructure — returns 503 or timeout
- Missing required 'type' or 'method' fields in input — returns validation error

## How this service works

Pay-per-call crypto, RWA, federal, SEC, and compliance APIs. Settled in USDC on Base via x402. Hyphen routes only (e.g. /x402/rwa-aggregates, /x402/gas-tracker).

## Output

Returns RWA intelligence data including asset aggregates, risk metrics, and compliance signals for the queried asset ID or filtered asset class. Response schema is flexible and example-driven, so the exact fields depend on the query action and constraints applied.

## 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": {
      "id": {
       "type": "string",
       "example": "buidl"
      },
      "action": {
       "type": "string",
       "example": "list"
      },
      "constraint": {
       "type": "string",
       "example": "class=tokenized_treasuries,risk<40"
      }
     }
    }
   }
  },
  "output": {
   "properties": {
    "example": {}
   }
  }
 }
}
```

## Response schema (JSON Schema)

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

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/scriptmasterlabs-rwa-intelligence-api-def081be/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from acp-x402-discovery.onrender.com](https://www.zero.xyz/host/acp-x402-discovery.onrender.com/llms.txt)
