# ScriptMasterLabs RWA Risk API

> ScriptMasterLabs RWA Risk 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 risk assessment data for a specified Real World Asset (RWA) token or protocol, paid per-call in USDC via x402.

## Facts

- Endpoint: GET https://acp-x402-discovery.onrender.com/x402/rwa-risk
- 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-risk-api-29bfa241
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_6BnQ2DQnxKpyeBv0VZf_F

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-risk-api-29bfa241
```

Example prompt: Can you pull the risk assessment for the RWA token with ID 'buidl' from the ScriptMasterLabs x402 API so I can evaluate its compliance and risk profile?

## When to prefer this

Choose this endpoint when you need pay-per-call, micro-cost risk data on a specific Real World Asset token or protocol, billed in USDC on Base via x402. It is well-suited for crypto-native agents that already handle x402 payment flows and need RWA-specific risk or compliance signals rather than general market data.

## Known failure modes

- Missing or invalid 'id' query parameter returns an error or empty result
- Payment not settled via x402 results in a 402 Payment Required response
- Unknown RWA identifier returns no data or a not-found error
- Service downtime on Render hosting may cause 503 errors
- Rate limiting or USDC balance exhaustion may block repeated calls

## 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 a JSON object containing risk assessment data for the specified RWA asset, potentially including risk scores, compliance indicators, regulatory flags, and protocol-level risk metrics. The exact schema is minimal and example-driven (the response schema is open-ended), so the agent should parse the returned JSON flexibly.

## 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"
      }
     }
    }
   }
  },
  "output": {
   "properties": {
    "example": {}
   }
  }
 }
}
```

## Response schema (JSON Schema)

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

## More

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