# Agent402 RWA Issuers List

> Agent402 RWA Issuers 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 list of real-world asset (RWA) token issuers with their IDs and names, sourced from CoinGecko.

## Facts

- Endpoint: GET https://agent402.tools/api/rwa-issuers
- 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-issuers-list-37d7225f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_EkAwYs8gfUdChYBbK5NGa

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-issuers-list-37d7225f
```

Example prompt: Can you pull the full list of real-world asset issuers from Agent402 — I want to see all the companies like Coinbase and Backpack Securities that are tokenizing real-world assets?

## When to prefer this

Use this endpoint when you need a structured, up-to-date directory of real-world asset token issuers sourced from CoinGecko, especially in agentic workflows where no API key is available and pay-per-call USDC billing via x402 is acceptable. Prefer this over manual CoinGecko scraping or building your own issuer index.

## Known failure modes

- Upstream CoinGecko data unavailable — may return stale or cached data
- Empty issuer list if CoinGecko index has no RWA issuers at query time
- Payment failure over x402/USDC resulting in 402 response with no data
- Rate limiting or provider outage returning 5xx error

## How this service works

The issuers behind tokenized real-world assets (Coinbase, Backpack Securities, Ondo, xStocks and the rest): id and name, for rwa-issuer. Cached in-process for 5 minutes.

## Output

A JSON object containing a count of RWA issuers, a list of issuer objects (each with an id and name), the data source (e.g. 'coingecko'), a cached flag indicating whether the response is from cache, and a fetchedAt ISO timestamp.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "properties": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "count": 33,
  "cached": false,
  "source": "coingecko",
  "issuers": [
   {
    "id": "coinbase-ecosystem",
    "name": "Coinbase"
   },
   {
    "id": "backpack-securities-ecosystem",
    "name": "Backpack Securities"
   }
  ],
  "fetchedAt": "2026-09-02T18:50:00.000Z"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agent402-rwa-issuers-list-37d7225f/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)
