# Agent402 Coins List

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

Returns a paginated, filterable list of cryptocurrency coins with IDs, symbols, names, and optional contract addresses per blockchain platform

## Facts

- Endpoint: GET https://agent402.tools/api/coins-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/agent402-coins-list-0cca6c6c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_NLnOQgQdmOVAsQmPgWX2c

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-coins-list-0cca6c6c
```

Example prompt: Can you get me the coin list filtered to just USDC, including contract addresses across all platforms?

## When to prefer this

Use this endpoint when you need a structured, filterable index of cryptocurrency coins with CoinGecko IDs and optional multi-chain contract addresses, especially when operating in a pay-per-call agent context without API keys. Prefer it over direct CoinGecko API calls when your agent uses x402/MPP payment rails and needs no signup. Best suited for resolving token symbols to IDs or finding on-chain contract addresses across platforms.

## Known failure modes

- Invalid or unknown platform ID returns an empty coins array rather than an error
- Symbol filter is case-insensitive but must be an exact match — partial ticker matches return no results
- perPage values outside 1–500 may be rejected or clamped
- Stale cache may return slightly outdated coin data (fetchedAt timestamp indicates age)
- Payment of 0.005 USDC required per call — insufficient wallet balance results in 402 response

## How this service works

The complete list of tracked coins (~18k) as {id, symbol, name}, paged: `page` + `perPage` (1-500, default 250). `includePlatforms: true` adds each coin's contract address per platform; `platform` (e.g. base, solana, ethereum) keeps only coins with a contract there; `symbol` keeps one ticker (exact, case-insensitive) across all its namesakes. For bulk id resolution, building a local symbol map, or enumerating every token on one chain; for a single lookup use coin-search.

## Output

A JSON object containing a paginated array of coin objects (each with id, name, symbol, and optionally a platforms map of blockchain IDs to contract addresses), plus metadata: total count, current page, total pages, results per page, applied filters, data source (CoinGecko), cache status, and fetch timestamp.

## 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": {
      "page": {
       "type": "number",
       "description": "Page number (default 1)."
      },
      "symbol": {
       "type": "string",
       "description": "Keep only coins with this ticker symbol (exact, case-insensitive)."
      },
      "perPage": {
       "type": "number",
       "description": "Rows per page, 1-500 (default 250)."
      },
      "platform": {
       "type": "string",
       "description": "Keep only coins with a contract on this platform id (implies includePlatforms)."
      },
      "includePlatforms": {
       "type": "boolean",
       "description": "Include contract addresses per platform (default false)."
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "source",
      "fetchedAt",
      "cached",
      "page",
      "perPage",
      "total",
      "totalPages",
      "count",
      "filters",
      "coins"
     ],
     "properties": {
      "page": {
       "type": "integer"
      },
      "coins": {
       "type": "array",
       "items": {
        "type": "object"
       }
      },
      "count": {
       "type": "integer"
      },
      "total": {
       "type": "integer"
      },
      "cached": {
       "type": "boolean"
      },
      "source": {
       "type": "string"
      },
      "filters": {
       "type": "object",
       "properties": {
        "symbol": {
         "type": "string"
        },
        "platform": {}
       }
      },
      "perPage": {
       "type": "integer"
      },
      "fetchedAt": {
       "type": "string"
      },
      "totalPages": {
       "type": "integer"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "page": 1,
  "coins": [
   {
    "id": "usd-coin",
    "name": "USDC",
    "symbol": "usdc",
    "platforms": {
     "base": "0x833589fcd6edb6e08f4c7c32d4f71b54bda02913",
     "solana": "EPjFWdd5AuFqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
     "ethereum": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48"
    }
   }
  ],
  "count": 3,
  "total": 3,
  "cached": false,
  "source": "coingecko",
  "filters": {
   "symbol": "usdc",
   "platform": null
  },
  "perPage": 250,
  "fetchedAt": "2026-08-22T13:20:00.000Z",
  "totalPages": 1
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agent402-coins-list-0cca6c6c/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)
