# OnchainPulse RWA Market Intelligence

> OnchainPulse RWA Market Intelligence is a paid API for AI agents from onchainpulse-nine.vercel.app, paid per call via x402, $0.15/call, status unknown (last checked 2026-09-15).

Returns real-world asset intelligence including market data, institutional moves, and tokenization pipeline updates for RWA sectors

## Facts

- Endpoint: GET https://onchainpulse-nine.vercel.app/api/rwa
- Price: $0.15/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/onchainpulse-rwa-market-intelligence-6c5bf4f6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_aAAEOY84ZXSK35fwcF4dB

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 onchainpulse-rwa-market-intelligence-6c5bf4f6
```

Example prompt: Pull me the latest OnchainPulse RWA intelligence — I want to see current market data, any notable institutional moves, and what's in the tokenization pipeline right now.

## When to prefer this

Choose this endpoint when you need a combined view of RWA market data, institutional activity, and tokenization pipeline in a single call. Prefer this over sibling endpoints when you want the broad market intelligence picture rather than specific sub-topics like yield rates, regulatory guidance, or plain-English terminology decoding.

## Known failure modes

- Payment not included or invalid x402 payment header — returns 402 Payment Required
- Data temporarily unavailable if upstream market feeds are stale — may return partial or cached data
- Rate limiting if called excessively in a short window
- No query parameters supported beyond the base endpoint — wrong path returns 404

## How this service works

Real-world-asset intelligence — market data, institutional moves (BlackRock, DTCC) and the tokenization pipeline. For institutional and investing agents.

## Output

A structured intelligence report covering real-world asset market data (prices, volumes, deal sizes), recent institutional activity and moves in the RWA space, and a snapshot of the tokenization pipeline showing which assets are being brought on-chain and by whom.

## Example request

```json
{
 "lang": "en",
 "action": "guide",
 "asset_type": "real estate"
}
```

## 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": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "lang": {
       "type": "string",
       "description": "en | de | fr | es | zh | ja | ko | pt | ar"
      },
      "action": {
       "type": "string",
       "description": "discover | compare | yield | risks | protocols"
      },
      "asset_class": {
       "type": "string",
       "description": "real-estate | treasuries | credit | commodities | private-equity | carbon-credits | art"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "errors": {
     "type": "object",
     "description": "Documented error responses, keyed by HTTP status code",
     "additionalProperties": {
      "type": "object",
      "required": [
       "description"
      ],
      "properties": {
       "example": {
        "type": "object"
       },
       "description": {
        "type": "string"
       }
      }
     }
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "asset_class": "treasuries",
  "market_size": "$12.4B TVL total RWA on-chain",
  "top_protocols": [
   {
    "apy": 5.2,
    "tvl": 890000000,
    "name": "Ondo OUSG",
    "chain": "Ethereum/Base",
    "min_investment": 5000
   },
   {
    "apy": 7.8,
    "tvl": 220000000,
    "name": "Maple USDC"
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/onchainpulse-rwa-market-intelligence-6c5bf4f6/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from onchainpulse-nine.vercel.app](https://www.zero.xyz/host/onchainpulse-nine.vercel.app/llms.txt)
