# Nemu Crypto Intelligence API — Analyze Endpoint

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

Performs AI-powered cryptocurrency analysis by aggregating CoinGecko and DexScreener data and generating LLM-driven insights for a given crypto asset ID

## Facts

- Endpoint: POST https://nemumu.orbonomy.xyz/api/analyze
- Price: $0.1/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-api-analyze-endpoint-6ef4992e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_CG2Ug_Cd-6nxYPvAjaCyQ

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-analyze-endpoint-6ef4992e -d '<json body>'
```

Example prompt: Can you run a full Nemu crypto intelligence analysis on the token with ID 'bitcoin' and tell me what the AI makes of its current market situation?

## When to prefer this

Choose this endpoint when you need a single, synthesized AI narrative analysis of a crypto asset — combining on-chain DEX data from DexScreener with broader market data from CoinGecko and an LLM-generated summary. Best when you want more than raw price data and need intelligent interpretation of a token's market position. Prefer this over raw data APIs when the goal is actionable insight rather than structured data extraction.

## Known failure modes

- Invalid or unrecognized token ID returns success: false with error details
- Network failures reaching CoinGecko or DexScreener upstream APIs may cause partial or failed responses
- Payment failure via x402 on Base or Solana results in 402 response before analysis runs
- Malformed request body missing required 'id' field returns validation error
- Token not listed on CoinGecko or DexScreener may return empty or limited data

## How this service works

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

## Output

Returns a success boolean and a data object containing AI-generated analysis of the specified crypto asset, synthesizing CoinGecko market data, DexScreener DEX data, and MiMo LLM-generated narrative insights about the token's current state.

## Request schema (JSON Schema)

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

## 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-analyze-endpoint-6ef4992e/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)
