# Agent Tape – Top DEX Pairs Feed

> Agent Tape – Top DEX Pairs Feed is a paid API for AI agents from agent-tape.annushka1190.workers.dev, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-14).

Returns the top DEX trading pairs with live price and liquidity data for AI trading agents, payable per-request in USDC via x402.

## Facts

- Endpoint: GET https://agent-tape.annushka1190.workers.dev/v1/top
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agent-tape-top-dex-pairs-feed-241ae4f8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_OdyYAhqx89OBQ_x6msmkZ

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 agent-tape-top-dex-pairs-feed-241ae4f8
```

Example prompt: Pull the top DEX trading pairs right now — I want to see which pairs have the highest liquidity and volume so my trading bot can decide where to act.

## When to prefer this

Choose this endpoint when your AI trading agent needs real-time top DEX pair data without managing API keys or subscriptions — ideal for pay-per-use autonomous agents that require live liquidity and price rankings and can pay micro-fees in USDC via x402 protocol.

## Known failure modes

- Payment not included or insufficient USDC (402 Payment Required)
- No pairs returned if filters yield empty results
- Upstream DexScreener data unavailable or delayed
- Rate limiting or worker timeout on the Cloudflare edge
- Malformed query parameters returning 400 error

## How this service works

Live DEX tape for AI trading agents: search pairs, token price and liquidity, pair lookup, boosts, paid DexScreener orders, Base ETH/USDC balance, nonce, contract check, gas, and tx receipt. Pay-per-request USDC via x402. No API keys, no accounts.

## Output

A JSON response with a list of the top DEX trading pairs, including token prices, liquidity metrics, volume data, and pair metadata sourced from DexScreener — returned in real time with no authentication required beyond the per-request USDC payment.

## 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": {
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ]
    },
    "queryParams": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ok": true
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agent-tape-top-dex-pairs-feed-241ae4f8/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agent-tape.annushka1190.workers.dev](https://www.zero.xyz/host/agent-tape.annushka1190.workers.dev/llms.txt)
