# Agent Tape – DEX Profiles Feed

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

Returns live DEX profile data (token/pair listings, liquidity snapshots, and market metadata) for AI trading agents via pay-per-request USDC payments.

## Facts

- Endpoint: GET https://agent-tape.annushka1190.workers.dev/v1/profiles
- Price: $0.004/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agent-tape-dex-profiles-feed-bd375807
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_fVfdvuU_RDMAr44F4g6VC

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-dex-profiles-feed-bd375807
```

Example prompt: Pull the live DEX profiles for the USDC/ETH pair on Base right now — I need to see which pools it's listed in and their current liquidity.

## When to prefer this

Choose this endpoint when you need real-time DEX pair profile data without setting up API keys or accounts, and you can pay per-request in USDC via x402. Ideal for AI trading agents on Base that need lightweight, on-demand market data without a subscription commitment.

## Known failure modes

- Missing or insufficient USDC payment returns 402 Payment Required
- Invalid or missing query parameters return an empty result set
- Token or pair not found on DexScreener returns empty profiles array
- Network timeout or Cloudflare Workers cold-start delay
- Rate limiting or payment processing failure

## 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 ok:true and profile records for DEX pairs matching the query, including token metadata, pool addresses, liquidity figures, and market identifiers sourced from DexScreener.

## 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-dex-profiles-feed-bd375807/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)
