# Nemu Crypto Intelligence Search API

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

Searches and analyzes cryptocurrency data using AI-powered natural language queries backed by CoinGecko, DexScreener, and MiMo LLM

## Facts

- Endpoint: POST https://nemura.orbonomy.xyz/api/search
- 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-search-api-ded18652
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_rvnV8cAjg0byNvxjnvjAB

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

Example prompt: Use Nemu to search for AI-powered crypto intelligence on Solana meme coins — give me a quick analysis of which ones are trending today with their market cap and liquidity data.

## When to prefer this

Use this endpoint when you need AI-interpreted, natural language answers about crypto tokens, prices, or market trends — especially for DEX-listed tokens and newly launched coins not covered by traditional financial APIs. Prefer over raw CoinGecko or DexScreener calls when you want synthesized intelligence rather than raw data.

## Known failure modes

- Query is too vague and returns empty or low-quality data
- Token not found on CoinGecko or DexScreener returns partial results
- LLM inference timeout causing delayed or failed response
- Payment not confirmed on Base or Solana causing 402 rejection
- Malformed query string returns success:false with no data

## 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 AI-synthesized cryptocurrency intelligence, potentially including price data, market cap, liquidity, DEX pair info, 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-ded18652/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)
