# RWA List – Tokenized Real-World Asset Catalog

> RWA List – Tokenized Real-World Asset Catalog is a paid API for AI agents from payai.agentstools.dev, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-15).

Returns a TVL-ranked catalog of tokenized real-world-asset products from DefiLlama, with slug, name, symbol, category, backing type, issuer, TVL, and supported chains, optionally filtered by category, chain, or issuer.

## Facts

- Endpoint: GET https://payai.agentstools.dev/rwa/list
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/rwa-list-tokenized-real-world-asset-catalog-be66b808
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ZqbWQBAhBUiYMheoV2Ott

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-list-tokenized-real-world-asset-catalog-be66b808
```

Example prompt: Show me the top 20 tokenized treasury products from DefiLlama's RWA catalog ranked by TVL — filter to just Ethereum and tell me the slug, issuer, and TVL for each.

## When to prefer this

Use this endpoint as the first step whenever you need to discover, enumerate, or filter tokenized real-world asset products from DefiLlama — especially when you need to resolve a product name to its slug for use in other RWA detail endpoints. Prefer this over building a manual list or scraping DefiLlama directly when you need TVL-ranked, normalized, multi-chain RWA data with issuer metadata in a single structured response.

## Known failure modes

- Invalid category enum value returns a validation error
- Unknown chain or issuer string returns an empty result set rather than an error
- Limit exceeding 300 causes a validation error
- Network timeouts if DefiLlama upstream is slow
- Empty results when filters are too restrictive (no matching products)

## How this service works

Catalog of tokenized real-world-asset products ranked by TVL, from the DefiLlama RWA universe. Each row carries slug, name, symbol, normalized sub-category, backing type, issuer, DefiLlama category, total value locked and the chains it lives on. Optionally filter by sub-category, chain or issuer. The cheap first step that resolves a name to the slug the other routes use.

## Output

A JSON array of RWA product rows ranked by TVL, each containing the product slug, name, symbol, normalized sub-category (e.g. tokenized-treasury, private-credit), backing type, issuer name, DefiLlama category, total value locked in USD, and the list of chains the product is deployed on. Supports up to 300 rows per call.

## 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": {
      "chain": {
       "type": "string",
       "description": "Filter to products present on this chain, such as Ethereum"
      },
      "limit": {
       "type": "integer",
       "maximum": 300,
       "minimum": 1,
       "description": "Max rows to return (ranked by TVL)"
      },
      "issuer": {
       "type": "string",
       "description": "Filter by issuer name, such as BlackRock or Ondo"
      },
      "category": {
       "enum": [
        "tokenized-treasury",
        "private-credit",
        "tokenized-fund",
        "commodity",
        "real-estate",
        "tokenized-equity",
        "tokenized-rwa"
       ],
       "type": "string",
       "description": "Filter by normalized RWA sub-category"
      }
     }
    }
   },
   "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-list-tokenized-real-world-asset-catalog-be66b808/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from payai.agentstools.dev](https://www.zero.xyz/host/payai.agentstools.dev/llms.txt)
