# Nemu Crypto Intelligence API — DEX Pair Lookup

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

Fetches DEX trading pair data and AI-powered analysis for a given crypto query using DexScreener and MiMo LLM

## Facts

- Endpoint: POST https://nemumu.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-api-dex-pair-lookup-74fc7177
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_QmxcChop6ihvZFv5j3CJS

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-api-dex-pair-lookup-74fc7177 -d '<json body>'
```

Example prompt: Can you pull up the DEX pair info for BONK/SOL and give me an AI breakdown of its liquidity and trading activity?

## When to prefer this

Use this endpoint when you need on-chain DEX trading pair data (liquidity, price, volume) enriched with AI interpretation for a specific token or pair, especially when working within a crypto agent workflow that already supports x402 micropayments on Base or Solana.

## Known failure modes

- Query string not recognized or ambiguous token pair — returns success: false with empty data
- Token pair not found on any supported DEX — empty data object
- Upstream DexScreener API unavailable — may return error or degraded response
- Invalid or missing query field — validation error
- Payment not processed (x402) — 402 response before data is returned

## 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 price, liquidity, volume, and AI-generated interpretation of the trading pair sourced from DexScreener via MiMo LLM.

## 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-api-dex-pair-lookup-74fc7177/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from nemumu.orbonomy.xyz](https://www.zero.xyz/host/nemumu.orbonomy.xyz/llms.txt)
