# Riley Craig x402 Agent Store — DEX Token Pairs Lookup

> Riley Craig x402 Agent Store — DEX Token Pairs Lookup is a paid API for AI agents from store.agentexchange.work, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-13).

Returns real-time DEX trading pair data (price, 24h volume, liquidity, price change) for a given token symbol, name, or contract address

## Facts

- Endpoint: GET https://store.agentexchange.work/crypto/dex
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/riley-craig-x402-agent-store-dex-token-pairs-lookup-9eaeb86c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Wpce6fO9Nse5D2cXSk3mA

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 riley-craig-x402-agent-store-dex-token-pairs-lookup-9eaeb86c
```

Example prompt: Look up DEX trading data for WIF — give me the current price in USD, 24-hour volume, liquidity, and price change across all pairs.

## When to prefer this

Use this endpoint when you need real-time DEX trading pair data (price, volume, liquidity) for a specific token identified by symbol, name, or contract address, and you want to pay per call in USDC with no API key or signup. Prefer this over centralized exchange APIs when you need on-chain DEX-specific data like liquidity and pair information.

## Known failure modes

- Token not found on any DEX — empty pairs array returned
- Invalid or unrecognized contract address — may return no results
- Payment failure via x402 — 402 response if USDC balance insufficient
- Network timeout if DEX data source is slow
- Token exists but has no liquidity — pairs returned with zero values

## How this service works

Live decentralized-exchange trading data for ANY token by symbol, name, or contract address: USD price, 24h volume, liquidity, buy/sell transaction counts, and price momentum across 5m/1h/6h/24h, across every chain and DEX. For crypto trading, sniping, research and portfolio agents that poll the market constantly. One paid call instead of integrating Dexscreener.

## Output

A JSON object with an array of trading pairs, each containing the pair name (e.g. WIF/SOL), the chain (e.g. solana), current price in USD, 24-hour volume in USD, 24-hour price change percentage, and liquidity in USD, along with the original query string.

## 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",
     "required": [
      "q"
     ],
     "properties": {
      "q": {
       "type": "string",
       "description": "Token symbol, name, or contract address (e.g. WIF, PEPE, or 0x...)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "pairs": {
       "type": "array"
      },
      "query": {
       "type": "string"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/riley-craig-x402-agent-store-dex-token-pairs-lookup-9eaeb86c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from store.agentexchange.work](https://www.zero.xyz/host/store.agentexchange.work/llms.txt)
