# Nemu Crypto Intelligence — Analyze Endpoint

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

AI-powered analysis of a crypto asset by ID using CoinGecko, DexScreener, and MiMo LLM to generate structured intelligence

## Facts

- Endpoint: POST https://nemura.orbonomy.xyz/api/analyze
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/nemu-crypto-intelligence-analyze-endpoint-f6576bc2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_VuQpZLcBJmG2N6c8OwavH

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

Example prompt: Can you run a Nemu AI-powered crypto analysis on the token with ID 'ethereum' and tell me what the intelligence report says about its market position and fundamentals?

## When to prefer this

Use this endpoint when you need AI-synthesized intelligence on a specific crypto asset that combines real-time market data from multiple sources (CoinGecko, DexScreener) with LLM-generated narrative analysis — ideal when a raw price feed is insufficient and you need an interpreted, structured assessment of a token.

## Known failure modes

- Invalid or unrecognized token ID returns success: false
- Missing required 'id' field causes 400 Bad Request
- Payment not received via x402 on Base or Solana causes 402 Payment Required
- Token not found in CoinGecko or DexScreener returns empty or error data
- LLM analysis service timeout or unavailability returns error response

## How this service works

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

## Output

Returns a JSON object with a success boolean and a data object containing AI-generated analysis of the specified crypto asset, synthesizing price and market data from CoinGecko and DexScreener with LLM-generated narrative intelligence.

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