# CoinMarketCap DEX Trading Pairs Lookup via claw402

> CoinMarketCap DEX Trading Pairs Lookup via claw402 is a paid API for AI agents from claw402.ai, paid per call via x402, $0.015/call, status unknown (last checked 2026-09-14).

Retrieves decentralized exchange (DEX) trading pair data from CoinMarketCap, filtered by network, contract address, volume, and liquidity, via a crypto-payment-gated proxy.

## Facts

- Endpoint: GET https://claw402.ai/api/v1/crypto/cmc/dex/pairs
- Price: $0.015/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/coinmarketcap-dex-trading-pairs-lookup-via-claw402-8e7eb38e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_K3-hdF9H6Cc3gHe01r2-C

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 coinmarketcap-dex-trading-pairs-lookup-via-claw402-8e7eb38e
```

Example prompt: Show me the top 10 DEX trading pairs on the Ethereum network with at least $100,000 in 24-hour volume, sorted by volume descending — pull this from CoinMarketCap DEX data.

## When to prefer this

Use this endpoint when you need CoinMarketCap DEX pair data without registering for a CMC API key, and you can pay per-call in USDC via x402 protocol. Prefer it over direct CMC API access when operating in a wallet-native, keyless agent environment.

## Known failure modes

- Empty data array returned if no pairs match the filter criteria
- Payment not processed — 402 response if USDC wallet payment fails
- Invalid network_slug returns empty or error response
- Rate limiting or upstream CMC API errors return non-zero code
- Missing required query params may return empty or malformed response

## How this service works

Backed by vergex.trade. Pay for any API with USDC. No API keys. No registration. Just a wallet.

## Output

Returns a JSON object with a status code and a data array containing DEX trading pair records, which may include pair names, contract addresses, liquidity figures, 24h volume, network info, and other auxiliary fields depending on query parameters.

## 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": {
      "aux": {
       "type": "string"
      },
      "sort": {
       "type": "string"
      },
      "limit": {
       "type": "string"
      },
      "start": {
       "type": "string"
      },
      "sort_dir": {
       "type": "string"
      },
      "network_slug": {
       "type": "string"
      },
      "liquidity_min": {
       "type": "string"
      },
      "volume_24h_min": {
       "type": "string"
      },
      "contract_address": {
       "type": "string"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "code": 0,
  "data": []
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/coinmarketcap-dex-trading-pairs-lookup-via-claw402-8e7eb38e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from claw402.ai](https://www.zero.xyz/host/claw402.ai/llms.txt)
