# AgenticFi Token List by Chain

> AgenticFi Token List by Chain is a paid API for AI agents from defi-api.agenticfi.wtf, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-15).

Returns the list of supported tokens for a given blockchain network by chain ID

## Facts

- Endpoint: GET https://defi-api.agenticfi.wtf/api/chain/token-list/%7BchainId%7D
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agenticfi-token-list-by-chain-3724b9ca
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_CirJCZZ0syEcrzq4y4Eie

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 agenticfi-token-list-by-chain-3724b9ca
```

Example prompt: Can you pull the full list of supported tokens on Base (chain ID 8453) from AgenticFi so I know which tokens are available for swaps?

## When to prefer this

Use this endpoint when you need to enumerate or discover all tokens available on a specific EVM chain before performing swaps, pricing lookups, or wallet analytics. Prefer this over manual token lookup when you need a comprehensive, up-to-date token registry for a supported chain like Base (8453), Ethereum (1), or Arbitrum (42161).

## Known failure modes

- Invalid or unsupported chainId returns an error or empty list
- Missing chainId path parameter causes a 400 or routing error
- Network or API downtime returns a 5xx error
- Payment not provided or insufficient USDC triggers a 402 payment required response

## How this service works

Canonical token addresses and metadata per chain

## Output

An array of token objects for the specified chain, each likely including token name, symbol, contract address, decimals, and possibly logo or metadata — the full registry of tokens supported by AgenticFi on that chain.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "pathParams",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object",
     "required": [
      "chainId"
     ],
     "properties": {
      "chainId": {
       "type": "string",
       "title": "chainId (required)",
       "description": "Required. Chain ID or key Examples: 8453, 1, 42161"
      }
     }
    },
    "queryParams": {
     "type": "object",
     "required": [
      "chainId"
     ],
     "properties": {
      "chainId": {
       "type": "string",
       "title": "chainId (required)",
       "description": "Required. Chain ID or key Examples: 8453, 1, 42161"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agenticfi-token-list-by-chain-3724b9ca/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from defi-api.agenticfi.wtf](https://www.zero.xyz/host/defi-api.agenticfi.wtf/llms.txt)
