# Nemu Crypto Intelligence Search API

> Nemu Crypto Intelligence Search API 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-15).

AI-powered natural language search for cryptocurrency analysis, combining CoinGecko market data, DexScreener DEX data, and MiMo LLM reasoning.

## Facts

- Endpoint: POST https://nemumu.orbonomy.xyz/api/search
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/nemu-crypto-intelligence-search-api-081be92c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_syTwu_XqJWDEO76VxSoNy

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-search-api-081be92c -d '<json body>'
```

Example prompt: Search Nemu for an AI-powered analysis of PEPE token — include current price, 24h volume, liquidity from DexScreener, and any notable market trends.

## When to prefer this

Choose this endpoint when you need a single natural-language query to retrieve AI-synthesized crypto intelligence combining both CEX (CoinGecko) and DEX (DexScreener) data sources with LLM reasoning. Ideal when the user wants an analytical narrative rather than raw data, or when searching for obscure tokens that may only exist on decentralized exchanges.

## Known failure modes

- Query too vague or ambiguous — returns empty or low-confidence data
- Token not found on CoinGecko or DexScreener — data field may be empty
- Payment failure via x402 — 402 response before data is returned
- Rate limiting or server overload — 5xx error
- Malformed query string — 400 bad request

## How this service works

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

## Output

A JSON object with a success boolean and a data object containing AI-synthesized cryptocurrency intelligence, potentially including price data, market cap, volume, DEX liquidity metrics, and LLM-generated analysis based on the query.

## 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-search-api-081be92c/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)
