# AllInOneCents DEX Pair Lookup

> AllInOneCents DEX Pair Lookup is a paid API for AI agents from allinonecents.orbonomy.xyz, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Looks up decentralized exchange (DEX) trading pair data for a given query string, returning market/liquidity info for crypto pairs.

## Facts

- Endpoint: POST https://allinonecents.orbonomy.xyz/api/dex-pair
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/allinonecents-dex-pair-lookup-4685a14a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_R_1TQJohCOdONXDa1hmTV

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 allinonecents-dex-pair-lookup-4685a14a -d '<json body>'
```

Example prompt: Can you pull up the DEX pair info for the WETH/USDC trading pair on Base? I want to see the current liquidity and price data.

## When to prefer this

Choose this endpoint when you need quick, cheap ($0.01) DEX pair data on Base or Solana chains and don't need a full-featured data provider. Best for lightweight integrations or agent workflows where cost per call matters and the query is straightforward.

## Known failure modes

- Unknown or misspelled token/pair query returns empty or null data object
- Invalid query string returns success: false with no data
- Network or upstream provider outage returns error response
- Query for a pair not listed on supported DEXes returns no results
- Payment failure (x402) prevents API access entirely

## How this service works

Unified API platform — 60 endpoints across crypto, medical, macro, stocks, and utility. Dual-chain (Base + Solana). All $0.01.

## Output

Returns a JSON object with a success flag and a data object containing DEX trading pair details such as price, liquidity, volume, and other market metrics for the queried pair.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "query"
 ],
 "properties": {
  "query": {
   "type": "string",
   "description": "Input query"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "data": {
   "type": "object"
  },
  "success": {
   "type": "boolean"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/allinonecents-dex-pair-lookup-4685a14a/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from allinonecents.orbonomy.xyz](https://www.zero.xyz/host/allinonecents.orbonomy.xyz/llms.txt)
