# AgenticFi Token Trading Pairs Lookup

> AgenticFi Token Trading Pairs Lookup 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 trading pair data for a given token identified by CoinGecko ID or EVM contract address

## Facts

- Endpoint: GET https://defi-api.agenticfi.wtf/api/token/pairs/%7Bid%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-trading-pairs-lookup-ac3c8a6f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_0MJMK8hsB3PJBCpLUAG0F

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-trading-pairs-lookup-ac3c8a6f
```

Example prompt: What are all the trading pairs available for Uniswap (uniswap) on-chain right now? I want to see which DEX pools it's listed in.

## When to prefer this

Use this endpoint when you need to discover what trading pairs exist for a specific token, identified by either a CoinGecko slug or an EVM contract address. Prefer this over general market data endpoints when the goal is to enumerate DEX pool pairs, find liquidity sources, or prepare for swap routing on Base or other EVM chains.

## Known failure modes

- Invalid or unknown CoinGecko token ID returns 404 or empty results
- Malformed EVM contract address returns validation error
- Token with no on-chain pairs returns empty array
- Payment not processed via x402 returns 402 Payment Required
- Rate limiting or network timeout returns 5xx error

## How this service works

All DEX pairs for a token with liquidity data

## Output

Returns a list of trading pairs for the specified token, including pair identifiers, associated exchanges or DEX pools, and related token addresses — enabling downstream swap routing and liquidity analysis.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "pathParams": {
   "id": "ethereum"
  },
  "queryParams": {
   "id": "ethereum"
  }
 }
}
```

## 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-token-trading-pairs-lookup-ac3c8a6f/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)
