# AI Utility Farm DEX Execution Packet

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

Generates a comprehensive DEX execution intelligence report for a Base or Solana token, including slippage risk, liquidity assessment, token risk score, and arbitrage spread analysis.

## Facts

- Endpoint: POST https://ai-utility-farm.brycedees1.chatgpt.site/v1/crypto/execution-packet
- Price: $0.25/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/ai-utility-farm-dex-execution-packet-38e52e7c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_24qwECh6cnZVUzknquhK2

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-execution-packet-38e52e7c -d '<json body>'
```

Example prompt: Can you pull a full DEX execution packet for WETH at 0x4200000000000000000000000000000000000006 on Base, assuming a $5000 trade size, 30 bps DEX fee, and $0.05 gas cost?

## When to prefer this

Use this endpoint when you need structured, modeled execution intelligence for a specific token on Base or Solana — including slippage risk, liquidity, risk score, and arbitrage analysis — especially when preparing to execute or evaluate a significant DEX trade. Prefer this over raw DEX Screener data when you need cost-modeled outputs (gas + DEX fees factored in) and a consolidated risk packet rather than raw price/volume feeds.

## Known failure modes

- Invalid or unrecognized token address returns an error or empty data
- Chain not supported (only 'base' and 'solana' are valid)
- Token has no DEX Screener data — returns empty or degraded report
- Trade size below minimum ($1) or above maximum ($1,000,000) rejected at schema validation
- DEX Screener upstream API unavailable — report may be stale or incomplete
- Payment not received via x402 — only free preview (sample:true) returned

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

Returns a structured JSON execution packet including: report type, chain, token address, observation timestamp, data source, token name/symbol, risk score (0-10), slippage risk band (e.g. 'contained'), exit liquidity assessment (e.g. 'comfortable-in-model'), arbitrage spread candidate with positive/negative after-cost flag, and a DEX pair snapshot. The 'sample' field indicates whether the response is a free preview or a paid full report.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "chain": {
   "enum": [
    "base",
    "solana"
   ],
   "type": "string",
   "description": "DEX Screener chain identifier"
  },
  "gasUsd": {
   "type": "number",
   "default": 0.05,
   "maximum": 1000,
   "minimum": 0,
   "description": "Assumed total network and priority-fee cost in USD"
  },
  "usdSize": {
   "type": "number",
   "maximum": 1000000,
   "minimum": 1,
   "description": "Hypothetical trade or position size in USD"
  },
  "dexFeeBps": {
   "type": "number",
   "default": 30,
   "maximum": 300,
   "minimum": 0,
   "description": "Assumed fee on each DEX leg, in basis points"
  },
  "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",
  "token": {
   "name": "Wrapped Ether",
   "symbol": "WETH",
   "address": "0x4200000000000000000000000000000000000006"
  },
  "sample": true,
  "slippage": {
   "riskBand": "contained"
  },
  "tokenRisk": {
   "riskScore": 4
  },
  "dataSource": "DEX Screener public API",
  "observedAt": "2026-08-10T00:00:00.000Z",
  "reportType": "complete-dex-execution-packet-v1",
  "pairSnapshot": {
   "reportType": "dex-pair-snapshot-v1"
  },
  "tokenAddress": "0x4200000000000000000000000000000000000006",
  "exitLiquidity": {
   "exitAssessment": "comfortable-in-model"
  },
  "arbitrageSpread": {
   "candidate": {
    "positiveAfterModeledCosts": false
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/ai-utility-farm-dex-execution-packet-38e52e7c/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)
