# OnchainPulse RWA Intelligence Feed

> OnchainPulse RWA Intelligence Feed is a paid API for AI agents from onchainpulse.theaslangroupllc.com, paid per call via x402, $0.15/call, status unknown (last checked 2026-09-14).

Delivers real-world-asset market data, institutional activity (BlackRock, DTCC), and tokenization pipeline intelligence for institutional and investing agents

## Facts

- Endpoint: GET https://onchainpulse.theaslangroupllc.com/api/rwa
- Price: $0.15/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/onchainpulse-rwa-intelligence-feed-77a5a981
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_yadPcjN25UbZEnfKz2_GO

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-intelligence-feed-77a5a981
```

Example prompt: Pull the latest real-world asset intelligence from OnchainPulse — I want to see what BlackRock and DTCC are doing in the tokenization pipeline and any notable RWA market data right now.

## When to prefer this

Choose this endpoint when an agent needs institutional-grade real-world asset intelligence including tokenization pipeline data and specific named-institution activity (BlackRock, DTCC). Prefer over generic crypto price feeds when the focus is on RWA tokenization trends, regulatory-adjacent institutional moves, and structured finance onchain.

## Known failure modes

- Payment not received or insufficient USDC — 402 Payment Required
- Rate limit exceeded — 429 Too Many Requests
- Data feed temporarily unavailable — 503 Service Unavailable
- Invalid API request parameters — 400 Bad Request
- Data may be delayed or stale if upstream institutional feeds are lagging

## How this service works

RWA market overview — asset-class scan, institutional moves (BlackRock, DTCC) and the tokenization pipeline. For product-level depth (yield comparison, issuer/redemption risk, tokenized gold) see /api/rwa-yield, /api/rwa-risk, /api/gold-check.

## Output

Returns structured market data on real-world assets including institutional activity from players like BlackRock and DTCC, current tokenization pipeline status, and broader RWA market intelligence suitable for institutional investment decision-making.

## 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": {
  "sources": [
   "https://example.com/article"
  ],
  "asset_class": "treasuries",
  "top_protocols": [
   {
    "name": "Ondo OUSG",
    "note": "Tokenized short-duration Treasuries; check current rate and AUM with the issuer",
    "chain": "Ethereum/Base",
    "min_investment": 5000
   }
  ],
  "institutional_moves": [
   "..."
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/onchainpulse-rwa-intelligence-feed-77a5a981/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from onchainpulse.theaslangroupllc.com](https://www.zero.xyz/host/onchainpulse.theaslangroupllc.com/llms.txt)
