# Nemu Crypto Intelligence — DEX Pair Lookup

> Nemu Crypto Intelligence — DEX Pair Lookup is a paid API for AI agents from nemura.orbonomy.xyz, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-13).

Looks up decentralized exchange (DEX) pair data for a given crypto token or pair query using DexScreener data and AI analysis

## Facts

- Endpoint: POST https://nemura.orbonomy.xyz/api/dex-pair
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/nemu-crypto-intelligence-dex-pair-lookup-0fa75aa9
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_tuRnrwNQq_aN8z5cmb9Ps

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 nemu-crypto-intelligence-dex-pair-lookup-0fa75aa9 -d '<json body>'
```

Example prompt: Can you pull up the DEX pair info for PEPE — I want to see which exchange it's trading on, the liquidity, and the current price?

## When to prefer this

Use this endpoint when you need real-time DEX trading pair data (price, liquidity, volume, exchange) for a specific token or pair, especially for newer or lower-cap tokens that may not appear on CoinGecko. Best for DeFi-native queries about on-chain trading activity rather than broad market cap rankings.

## Known failure modes

- Token or pair not found on DexScreener — success: false with empty data
- Ambiguous query matching multiple pairs — may return first/best match or error
- Payment not received — HTTP 402 response requiring x402 payment on Base or Solana
- Malformed query string — validation error or empty result
- Upstream DexScreener API unavailable — service error

## How this service works

AI-powered crypto analysis. CoinGecko + DexScreener + MiMo LLM. 20 endpoints. x402 on Base + Solana.

## Output

Returns a success flag and a data object containing DEX pair details such as exchange name, pair address, token prices, liquidity, trading volume, and related market metadata sourced from DexScreener.

## Request schema (JSON Schema)

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

## Response schema (JSON Schema)

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

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/nemu-crypto-intelligence-dex-pair-lookup-0fa75aa9/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from nemura.orbonomy.xyz](https://www.zero.xyz/host/nemura.orbonomy.xyz/llms.txt)
