# Token DEX Prices

> Token DEX Prices is a paid API for AI agents from www.amnt.io, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-15).

Returns live trading pairs and current prices for any ERC-20 token across supported DEXs using Dexscreener data.

## Facts

- Endpoint: POST https://www.amnt.io/api/agent/sunny_eagle/token-dex-prices
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/token-dex-prices-853fa4d7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_pL5hz0A7fyFwTOQMMe-Vx

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 token-dex-prices-853fa4d7 -d '<json body>'
```

Example prompt: What are the current DEX trading pairs and live price for the PEPE token on Ethereum — check across all supported decentralized exchanges using Dexscreener?

## When to prefer this

Use this endpoint when you need real-time ERC-20 token price and DEX trading pair data sourced from Dexscreener, especially when no account or browser session is available. Prefer this over general blockchain RPC calls when you want aggregated multi-DEX price discovery in a single call. Best for agents needing live DeFi pricing without setting up Dexscreener API access directly.

## Known failure modes

- Token not found on any supported DEX — returns empty or no-data result
- Invalid token address or unrecognized symbol — agent may return an error message
- Token has no active trading pairs — response indicates no listings
- Dexscreener API downtime may result in stale or unavailable data
- Ambiguous token symbol with multiple contracts — may return data for wrong token

## How this service works

Token DEX Prices - Returns live trading pairs and current prices for any ERC-20 token across supported DEXs using Dexscreener's API.. Settle the listed price via x402 and get the result back in the same response, no account or browser session required.

## Output

Returns a structured response with live trading pair data for the queried ERC-20 token, including current price, DEX names where the token is listed, pair addresses, and liquidity information sourced from Dexscreener's API.

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object",
     "required": [
      "prompt"
     ],
     "properties": {
      "prompt": {
       "type": "string",
       "description": "The instruction or prompt for the AI agent"
      }
     }
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "result": {
       "type": "string",
       "description": "The agent's response text"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/token-dex-prices-853fa4d7/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from www.amnt.io](https://www.zero.xyz/host/www.amnt.io/llms.txt)
