# ScriptMasterLabs RWA Assets API

> ScriptMasterLabs RWA Assets 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-13).

Returns a paginated list of real-world asset (RWA) tokens and their metadata, filterable by asset class such as tokenized treasuries

## Facts

- Endpoint: GET https://acp-x402-discovery.onrender.com/x402/rwa-assets
- 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/scriptmasterlabs-rwa-assets-api-19910db7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ZX83RwDL7BRYPzK07s7MA

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-assets-api-19910db7
```

Example prompt: Pull me the first 10 tokenized treasury assets from the RWA assets listing — I want to see what tokenized treasuries are currently available.

## When to prefer this

Choose this endpoint when you need a quick, cheap ($0.001 USDC) programmatic lookup of tokenized real-world assets and want to filter by asset class such as tokenized treasuries. Prefer this over manual RWA research tools when you need structured, machine-readable asset listings for agent workflows, compliance checks, or portfolio aggregation. Not ideal if you need deeply detailed asset prospectuses or verified regulatory filings — this is a lightweight data listing API.

## Known failure modes

- Payment not settled — 402 response if USDC payment via x402 is not properly attached
- Invalid asset_class value returns empty results or error
- Limit parameter out of range may return default of 25 records
- Service hosted on Render free tier may have cold-start latency or occasional downtime
- Response schema is underspecified — fields may vary or be empty

## 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

A paginated list of real-world asset (RWA) records including asset identifiers, asset class labels (e.g. tokenized_treasuries), and associated metadata. The response schema is minimal and the exact fields returned depend on the live API data, but typically includes asset names, types, and on-chain identifiers. Each call is settled via x402 at $0.001 USDC on Base.

## 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": {
      "limit": {
       "type": "integer",
       "default": 25,
       "example": 10
      },
      "asset_class": {
       "type": "string",
       "example": "tokenized_treasuries"
      }
     }
    }
   }
  },
  "output": {
   "properties": {
    "example": {}
   }
  }
 }
}
```

## Response schema (JSON Schema)

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

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/scriptmasterlabs-rwa-assets-api-19910db7/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)
