# RWA Category Market Intelligence

> RWA Category Market Intelligence is a paid API for AI agents from payai.agentstools.dev, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Returns TVL aggregates, top-ranked products, issuer concentration, and growth trends for a specific RWA sub-category, or a market-wide roll-up if no category is specified.

## Facts

- Endpoint: GET https://payai.agentstools.dev/rwa/category
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/rwa-category-market-intelligence-e269a760
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_n3dcEb76MSgxRBwY3Ob2F

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-category-market-intelligence-e269a760
```

Example prompt: What's the current TVL breakdown for tokenized treasuries — give me the top products by TVL share, issuer concentration, and the leading product's growth trend.

## When to prefer this

Use this endpoint when you need a fast, pre-aggregated RWA market intelligence summary — TVL, rankings, concentration, and growth trends — without having to query and normalize raw on-chain data yourself. Prefer it over generic DeFi dashboards when you specifically need sub-category-level RWA breakdowns (e.g. tokenized treasuries vs private credit vs real estate) with issuer concentration context.

## Known failure modes

- Invalid category value not in enum returns an error
- Network or upstream data-source unavailability may return a 5xx error
- Stale or lagging TVL data if the upstream source hasn't refreshed recently
- Missing or empty results if a sub-category has no indexed products yet

## How this service works

Market-intelligence aggregate over a normalized RWA sub-category: total TVL, the top products ranked with their TVL share, issuer concentration and the leading product's growth trend. Called without a category it returns a market-wide roll-up of every sub-category's TVL and product count. Cited to the open-data source.

## Output

Returns a structured aggregate for the requested RWA sub-category (or all categories if none specified), including: total TVL, a ranked list of top products with TVL share percentages, issuer concentration metrics, and the growth trend of the leading product. Data is cited to its 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": {
      "category": {
       "enum": [
        "tokenized-treasury",
        "private-credit",
        "tokenized-fund",
        "commodity",
        "real-estate",
        "tokenized-equity",
        "tokenized-rwa"
       ],
       "type": "string",
       "description": "Normalized RWA sub-category; omit for a market-wide roll-up"
      }
     }
    }
   },
   "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-category-market-intelligence-e269a760/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)
