# Agent Tape – Paid DexScreener Orders Lookup

> Agent Tape – Paid DexScreener Orders Lookup 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-13).

Fetches paid DexScreener orders (boosts/promotions) for tokens or pairs, paid per-request via x402 USDC with no API keys required.

## Facts

- Endpoint: GET https://agent-tape.annushka1190.workers.dev/v1/orders
- Price: $0.005/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-paid-dexscreener-orders-lookup-dab0e0de
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ccfecmyK_FkapzRjfwXBX

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-paid-dexscreener-orders-lookup-dab0e0de
```

Example prompt: Check if the token at 0x4ed4E862860beD51a9570b96d89aF5E1B0Efefed has any active paid DexScreener boost orders right now.

## When to prefer this

Use this endpoint when you need to check whether a token or pair has active paid promotions or boosts on DexScreener, especially for due diligence before trading or to assess whether price momentum is organically driven. Prefer this over general DEX pair search endpoints when your specific need is promotion/boost metadata rather than price or liquidity data. Ideal for agents that operate without API keys and pay micro-fees per call via x402 USDC.

## Known failure modes

- Missing or invalid token/pair address returns empty results or error
- Payment failure via x402 results in 402 response with no data
- DexScreener upstream unavailable causes timeout or error response
- Querying a token with no paid orders returns empty order list
- Malformed query parameters may return error or unexpected results

## 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 a boolean 'ok' field and data about paid DexScreener orders associated with the queried token or pair, including boost or promotion records sourced from DexScreener's paid order system.

## 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-paid-dexscreener-orders-lookup-dab0e0de/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)
