# Nemu Crypto Intelligence — Market Analysis Endpoint

> Nemu Crypto Intelligence — Market Analysis Endpoint is a paid API for AI agents from nemumu.orbonomy.xyz, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-15).

Returns AI-powered cryptocurrency market analysis by querying a target asset or market pair, combining CoinGecko, DexScreener data with MiMo LLM insights

## Facts

- Endpoint: POST https://nemumu.orbonomy.xyz/api/market
- Price: $0.03/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-market-analysis-endpoint-8b950e27
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_w1tuo4IQSTYePMpA_6bJY

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-market-analysis-endpoint-8b950e27 -d '<json body>'
```

Example prompt: Give me an AI-powered market analysis for BTC compared to USD — pull in CoinGecko and DexScreener data and give me the full picture.

## When to prefer this

Choose this endpoint when you need AI-synthesized market intelligence that combines both CEX data (CoinGecko) and DEX data (DexScreener) with LLM interpretation — ideal for tokens traded on decentralized exchanges where pure price feeds are insufficient, and when you want a natural language or structured AI summary rather than raw OHLCV data.

## Known failure modes

- Missing required 'vs' field returns validation error
- Unsupported or unrecognized token pair may return empty or error data
- Payment failure via x402 on Base or Solana returns 402 before processing
- Downstream CoinGecko or DexScreener API outage may cause partial or failed responses
- success: false returned with no data if the market query cannot be resolved

## 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 market analysis for the requested crypto pair, drawing on CoinGecko price/market data and DexScreener DEX liquidity and trading data, processed through the MiMo LLM.

## Request schema (JSON Schema)

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

## 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-market-analysis-endpoint-8b950e27/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)
