# Agent Tape – DEX Boosts Feed

> Agent Tape – DEX Boosts 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).

Retrieves the current list of boosted token pairs on DexScreener, showing which projects have paid to promote their tokens on the DEX aggregator.

## Facts

- Endpoint: GET https://agent-tape.annushka1190.workers.dev/v1/boosts
- 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-dex-boosts-feed-87cc2908
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_sYFtBBEtFp-VC4woJrC99

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-boosts-feed-87cc2908
```

Example prompt: Show me which tokens are currently boosted on DexScreener — I want to see what projects are paying for promotion right now.

## When to prefer this

Use this endpoint when you need real-time data on which tokens have paid for promotion/boosting on DexScreener, specifically to identify promotional activity, filter boosted tokens from organic analysis, or spot momentum signals from paid campaigns. Prefer this over building your own DexScreener scraper; it requires no API keys and charges only $0.005 USDC per call via x402.

## Known failure modes

- Payment not received or USDC balance insufficient — returns 402 Payment Required
- DexScreener API upstream unavailable — may return 502 or error JSON
- Rate limiting or quota exceeded on the underlying data source
- Malformed query parameters may return empty results or validation error
- Nonce reuse or stale payment headers rejected

## 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

Returns a JSON object with ok:true and a list of currently boosted token pairs from DexScreener, including pair identifiers, token metadata, and boost/promotion details for tokens that have paid for elevated visibility on the platform.

## 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-boosts-feed-87cc2908/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)
