# Agent402 RWA Asset List

> Agent402 RWA Asset List is a paid API for AI agents from agent402.tools, paid per call via x402, $0.003/call, status unknown (last checked 2026-09-14).

Returns a searchable, filterable list of real-world assets (stocks, ETFs, and commodities) available on Agent402, sourced from CoinGecko.

## Facts

- Endpoint: GET https://agent402.tools/api/rwa-list
- Price: $0.003/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agent402-rwa-asset-list-53157f28
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_nFA2U-eReuemT807QK9vL

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 agent402-rwa-asset-list-53157f28
```

Example prompt: Show me all available commodities in the Agent402 RWA index — things like gold and silver — and limit the results to 50.

## When to prefer this

Use this endpoint when an AI agent needs to discover or search the set of real-world assets (stocks, ETFs, commodities) available on the Agent402 platform before executing trades or further lookups. Prefer it over generic financial data APIs when operating in the x402/USDC micropayment ecosystem with no API key, or when you need a curated, on-chain-ranked index of tokenized RWAs specifically indexed by Agent402.

## Known failure modes

- Invalid 'type' filter value returns an error or empty result
- Limit outside 1–700 range may be rejected or clamped
- Payment failure (x402) if USDC balance is insufficient — returns 402 status
- Stale cache may return slightly outdated asset lists
- Empty result array if search query matches no assets

## How this service works

Every real-world asset with a tokenized onchain version that CoinGecko tracks: stocks, ETFs and commodities, with id, symbol, name and type. Filter by type or a name/symbol substring; ids feed rwa-markets and rwa-asset. Counts by type ride along. Cached in-process for 10 minutes.

## Output

A JSON object containing a filtered array of real-world assets (each with id, name, symbol, and type), plus metadata: total assets available, count returned, breakdown by asset type (stock/ETF/commodity), applied filters, data source (CoinGecko), fetch timestamp, and whether the result was cached.

## 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"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "q": {
       "type": "string",
       "description": "Case-insensitive substring on name or symbol (e.g. nvidia, gold, spy)."
      },
      "type": {
       "type": "string",
       "description": "stock | etf | commodity (default: all)."
      },
      "limit": {
       "type": "integer",
       "description": "Max rows (1-700, default 200)."
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "source",
      "fetchedAt",
      "cached",
      "total",
      "byType",
      "filters",
      "count",
      "assets"
     ],
     "properties": {
      "count": {
       "type": "integer"
      },
      "total": {
       "type": "integer"
      },
      "assets": {
       "type": "array"
      },
      "byType": {
       "type": "object"
      },
      "cached": {
       "type": "boolean"
      },
      "source": {
       "type": "string"
      },
      "filters": {
       "type": "object"
      },
      "fetchedAt": {
       "type": "string"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "count": 2,
  "total": 649,
  "assets": [
   {
    "id": "gold",
    "name": "Gold",
    "type": "commodity",
    "symbol": "XAU"
   },
   {
    "id": "silver",
    "name": "Silver",
    "type": "commodity",
    "symbol": "XAG"
   }
  ],
  "byType": {
   "etf": 186,
   "stock": 461,
   "commodity": 2
  },
  "cached": false,
  "source": "coingecko",
  "filters": {
   "q": null,
   "type": "commodity"
  },
  "fetchedAt": "2026-09-02T18:50:00.000Z"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agent402-rwa-asset-list-53157f28/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agent402.tools](https://www.zero.xyz/host/agent402.tools/llms.txt)
