# RWA Product List by TVL (DefiLlama Universe)

> RWA Product List by TVL (DefiLlama Universe) is a paid API for AI agents from api.agentstools.dev, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-15).

Returns a catalog of tokenized real-world-asset products ranked by TVL, with slug, name, symbol, sub-category, backing type, issuer, chains, and TVL; supports filtering by category, chain, or issuer.

## Facts

- Endpoint: GET https://api.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-product-list-by-tvl-defillama-universe-c90708f7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_muG-FnY4UvYJOYlJ3ZQzV

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-product-list-by-tvl-defillama-universe-c90708f7
```

Example prompt: Show me the top 20 tokenized treasury products from the DefiLlama RWA universe, filtered to Ethereum only, ranked by TVL — I need the slug, issuer, and TVL for each.

## When to prefer this

Use this endpoint as the first step whenever you need to discover, filter, or resolve RWA product slugs before querying detailed data from sibling routes. Prefer this over generic DeFi APIs when you specifically need real-world asset coverage sourced from the DefiLlama RWA universe, with normalized sub-categories and issuer metadata in a single ranked response.

## Known failure modes

- Invalid category enum value returns a 400/validation error
- Chain or issuer name not matching any records returns an empty list
- Limit exceeding 300 is rejected by schema validation
- Service unavailable if DefiLlama upstream is down
- Typo in issuer name returns empty results silently

## 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 ranked list of RWA products (up to the requested limit, default ranked by TVL), each containing: slug (used in follow-on API routes), product name, ticker symbol, normalized sub-category (e.g. tokenized-treasury), backing type, issuer name, DefiLlama category label, total value locked in USD, and the list of chains it is deployed on.

## 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-product-list-by-tvl-defillama-universe-c90708f7/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)
