# AgenticFi DEX Pairs by Token (Ethereum)

> AgenticFi DEX Pairs by Token (Ethereum) 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 all DEX trading pairs for a given token on Ethereum, including liquidity data for each pair

## Facts

- Endpoint: GET https://defi-api.agenticfi.wtf/api/token/pairs/ethereum
- 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-dex-pairs-by-token-ethereum-35c8a668
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Ba_t6PHUkDnuKDbqOOKF4

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-dex-pairs-by-token-ethereum-35c8a668
```

Example prompt: Show me all the DEX trading pairs and liquidity data for Chainlink (the token ID is 'chainlink') on Ethereum — I want to know which exchanges it's listed on and how much liquidity each pair has.

## When to prefer this

Use this endpoint when you need a comprehensive view of where a specific Ethereum token is traded across DEXes, including liquidity data. Prefer this over a general price endpoint when you need to know which liquidity pools exist, compare liquidity across venues, or identify the best swap route for a token.

## Known failure modes

- Invalid or unrecognized CoinGecko token ID returns 404 or empty result
- Invalid EVM contract address format returns validation error
- Token exists but has no DEX pairs on Ethereum returns empty array
- Network timeout for tokens with many pairs
- Payment failure (402) if x402 micropayment not properly handled

## How this service works

All DEX pairs for a token with liquidity data

## Output

A list of all DEX trading pairs involving the specified token on Ethereum, with liquidity metrics for each pair such as pool address, exchange name, paired token, and liquidity depth.

## 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": [
      "id"
     ],
     "properties": {
      "id": {
       "type": "string",
       "title": "id (required)",
       "description": "Required. CoinGecko token ID or EVM contract address.\nTry CoinGecko IDs like: bitcoin, ethereum, solana, chainlink, uniswap, aave, maker, dogecoin, pepe, arbitrum\nContract address example: 0x833589fCD6EDB6E08f4c7C32D4f71b54bdA02913"
      }
     }
    },
    "queryParams": {
     "type": "object",
     "required": [
      "id"
     ],
     "properties": {
      "id": {
       "type": "string",
       "title": "id (required)",
       "description": "Required. CoinGecko token ID or EVM contract address.\nTry CoinGecko IDs like: bitcoin, ethereum, solana, chainlink, uniswap, aave, maker, dogecoin, pepe, arbitrum\nContract address example: 0x833589fCD6EDB6E08f4c7C32D4f71b54bdA02913"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agenticfi-dex-pairs-by-token-ethereum-35c8a668/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)
