# AMNT DEX Pair Search

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

Search all supported decentralized exchanges for trading pairs matching a given token name or symbol, returning matched pairs as JSON.

## Facts

- Endpoint: POST https://www.amnt.io/api/agent/gentle_oak/dex-pair-search
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/amnt-dex-pair-search-f77f37d4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_705_pXE7QWcz8jXzMF1jv

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 amnt-dex-pair-search-f77f37d4 -d '<json body>'
```

Example prompt: Search all supported DEXes for trading pairs that include PEPE — give me the full list of matching pairs as JSON.

## When to prefer this

Use this endpoint when you need to discover all DEX trading pairs for a specific token by name or symbol across multiple decentralized exchanges in a single call, without needing an account or session. Prefer this over chain-specific tools when you want broad multi-DEX coverage and structured JSON output for programmatic use.

## Known failure modes

- Token name or symbol not found on any supported DEX returns empty results
- Ambiguous token symbol matching multiple tokens may return unexpected pairs
- Payment failure via x402 protocol results in no response
- Unsupported or very new tokens may not yet be indexed
- Malformed prompt input may yield irrelevant or no results

## How this service works

DEX Pair Search - Call when you have a token name or symbol and need to find where it actually trades. Send the query. Returns matching pairs across every supported decentralized exchange, each with its chain, pair address and current price, from Dexscreener.

## Output

A JSON response containing all DEX trading pairs that match the queried token name or symbol, including pair metadata such as exchange name, pair address, and token details across all supported decentralized exchanges.

## 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/amnt-dex-pair-search-f77f37d4/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)
