# AI Utility Farm DEX Pair Snapshot

> AI Utility Farm DEX Pair Snapshot is a paid API for AI agents from ai-utility-farm.brycedees1.chatgpt.site, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-13).

Returns a DEX pair snapshot for a given token on Base or Solana, including price, liquidity, volume, and cross-pool dispersion metrics sourced from DEX Screener.

## Facts

- Endpoint: POST https://ai-utility-farm.brycedees1.chatgpt.site/v1/crypto/pair-snapshot
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/ai-utility-farm-dex-pair-snapshot-d4a87bf5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_RaaZMFKCQguebx2WxeBb_

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 ai-utility-farm-dex-pair-snapshot-d4a87bf5 -d '<json body>'
```

Example prompt: Can you pull a DEX pair snapshot for WETH at 0x4200000000000000000000000000000000000006 on Base — I want to see the current price, total liquidity, 24h volume, and how spread out the price is across pools?

## When to prefer this

Use this endpoint when you need real-time DEX market data — price, liquidity, volume, and cross-pool dispersion — for a specific token on Base or Solana. Prefer it over generic price APIs when you need multi-pool analysis, execution intelligence, or want to assess slippage and arbitrage risk before a trade. Best suited for agents performing pre-trade due diligence or DeFi market monitoring on Base or Solana.

## Known failure modes

- Unknown or unlisted token address returns empty pairs array
- Invalid chain identifier causes request rejection
- Token with no DEX activity returns zero liquidity and volume
- Network timeout from DEX Screener upstream results in delayed or failed response
- Malformed token address (wrong format for chain) causes validation error
- Payment failure (x402) prevents access to paid full report

## How this service works

Base/Solana DEX execution intelligence and website analysis, with a free live token preview and paid reports through x402 in Base USDC.

## Output

A JSON object containing the token's name, symbol, and address; a list of trading pairs; a summary with pair count, analyzed pair count, primary USD price, total liquidity in USD, 24h volume in USD, and cross-pool price dispersion percentage; plus metadata fields for data source, chain, and observation timestamp. Free preview returns a sample flag; paid calls return full pair-level data.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "chain": {
   "enum": [
    "base",
    "solana"
   ],
   "type": "string",
   "description": "DEX Screener chain identifier"
  },
  "tokenAddress": {
   "type": "string",
   "description": "Base token contract or Solana token mint"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "schema": {
  "type": "object",
  "required": [
   "reportType",
   "chain",
   "tokenAddress",
   "observedAt",
   "dataSource"
  ],
  "properties": {
   "chain": {
    "type": "string"
   },
   "dataSource": {
    "type": "string"
   },
   "observedAt": {
    "type": "string",
    "format": "date-time"
   },
   "reportType": {
    "type": "string"
   },
   "tokenAddress": {
    "type": "string"
   }
  },
  "additionalProperties": true
 },
 "example": {
  "chain": "base",
  "pairs": [],
  "token": {
   "name": "Wrapped Ether",
   "symbol": "WETH",
   "address": "0x4200000000000000000000000000000000000006"
  },
  "sample": true,
  "summary": {
   "pairCount": 8,
   "primaryPriceUsd": 3650.25,
   "analyzedPairCount": 6,
   "totalLiquidityUsd": 24500000,
   "totalVolume24hUsd": 8250000,
   "crossPoolPriceDispersionPct": 0.08
  },
  "dataSource": "DEX Screener public API",
  "observedAt": "2026-08-10T00:00:00.000Z",
  "reportType": "dex-pair-snapshot-v1",
  "tokenAddress": "0x4200000000000000000000000000000000000006"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/ai-utility-farm-dex-pair-snapshot-d4a87bf5/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from ai-utility-farm.brycedees1.chatgpt.site](https://www.zero.xyz/host/ai-utility-farm.brycedees1.chatgpt.site/llms.txt)
