# AllInOneCents DEX Pair Lookup

> AllInOneCents DEX Pair Lookup is a paid API for AI agents from allin-onecents.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 token or pair query

## Facts

- Endpoint: POST https://allin-onecents.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-e6c7ea33
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ACu7cZnyCWeiREN32qK6o

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-e6c7ea33 -d '<json body>'
```

Example prompt: Can you look up the DEX pair data for WETH/USDC on Base chain using the AllInOneCents API?

## When to prefer this

Choose this endpoint when you need quick, low-cost ($0.01) DEX pair lookups for tokens on Base or Solana chains and want a simple unified API without managing multiple DEX-specific SDKs.

## Known failure modes

- Invalid or unrecognized query string returns empty or null data
- Token or pair not found on supported chains returns success:false
- Payment not received results in 402 Payment Required
- Malformed request body returns 400 error
- Unsupported chain or pair may return empty data object

## 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 boolean and a data object containing DEX trading pair details such as price, liquidity, and pair metadata for the queried token or 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-e6c7ea33/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from allin-onecents.orbonomy.xyz](https://www.zero.xyz/host/allin-onecents.orbonomy.xyz/llms.txt)
