# RWA Tokenized Product Yield Facet

> RWA Tokenized Product Yield Facet is a paid API for AI agents from api.agentstools.dev, paid per call via x402, $0.008/call, status unknown (last checked 2026-09-15).

Returns pool-level APY metrics (base, reward, 30-day mean, 30-day change), TVL-weighted average APY, and availability status for a tokenized real-world asset product from DefiLlama yields feed.

## Facts

- Endpoint: GET https://api.agentstools.dev/rwa/yield
- Price: $0.008/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/rwa-tokenized-product-yield-facet-50aa37d1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_n1nAb-QJJezseUFbPvmyr

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 rwa-tokenized-product-yield-facet-50aa37d1
```

Example prompt: What's the current APY, 30-day mean, and TVL-weighted yield for the ONDO tokenized RWA product — use the DefiLlama slug 'ondo-finance'?

## When to prefer this

Use this endpoint when you need structured, cited yield metrics for a specific tokenized real-world asset product and want pool-level APY detail plus trend data (30-day mean and change) sourced from DefiLlama. Prefer this over generic DeFi yield scrapers when the product is a tokenized RWA (e.g. tokenized treasuries, bonds, real estate) and you need TVL-weighted aggregation across multiple pools in a single call.

## Known failure modes

- Product slug or symbol not found in DefiLlama yields feed — returns availability: false
- Neither slug nor symbol provided — missing required query parameter error
- DefiLlama feed temporarily unavailable — upstream data fetch failure
- Product exists but has no tracked pools — availability: false with empty pool data

## How this service works

Yield facet for a tokenized-RWA product: pool-level APY, base APY, reward APY, the 30-day mean APY and the 30-day change, plus a TVL-weighted average across the product's pools, from the DefiLlama yields feed. Reports availability false when the product has no tracked pools. Cited to the open-data source.

## Output

A JSON object with pool-level APY breakdown (base APY, reward APY, total pool APY), 30-day mean APY, 30-day APY change, TVL-weighted average APY across all pools, and an availability boolean indicating whether the product has tracked pools on DefiLlama. Includes citation to the DefiLlama open-data source.

## 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",
     "required": [],
     "properties": {
      "slug": {
       "type": "string",
       "description": "DefiLlama product slug"
      },
      "symbol": {
       "type": "string",
       "description": "Token symbol (alternative to slug)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/rwa-tokenized-product-yield-facet-50aa37d1/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.agentstools.dev](https://www.zero.xyz/host/api.agentstools.dev/llms.txt)
