# Nemu Crypto Compare — Multi-Asset Comparison

> Nemu Crypto Compare — Multi-Asset Comparison 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).

Compares multiple cryptocurrencies side-by-side using CoinGecko, DexScreener, and MiMo LLM-powered analysis

## Facts

- Endpoint: POST https://nemura.orbonomy.xyz/api/compare
- 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-compare-multi-asset-comparison-810263f2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_yX2Dk52HQ5Oe3XrGSBoxt

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-compare-multi-asset-comparison-810263f2 -d '<json body>'
```

Example prompt: Compare Bitcoin, Ethereum, and Solana for me — I want to see how they stack up against each other in terms of price performance and get an AI take on which looks strongest right now.

## When to prefer this

Use this endpoint when you need to compare two or more cryptocurrencies simultaneously with AI-powered narrative analysis layered on top of raw market data — particularly when CoinGecko price data alone is insufficient and you want DexScreener DEX liquidity context plus an LLM interpretation.

## Known failure modes

- Invalid or unrecognized coin IDs return an error or empty data
- Empty ids array causes validation failure
- Payment of 0.1 USDC not provided results in 402 response
- Network timeout from CoinGecko or DexScreener upstream causes partial data
- Unsupported token on neither CoinGecko nor DexScreener returns no data for that token

## How this service works

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

## Output

Returns a structured object with success status and a data payload containing side-by-side comparative metrics, price data, and AI-generated analysis for each of the requested cryptocurrency IDs.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "ids"
 ],
 "properties": {
  "ids": {
   "type": "array",
   "description": "ids"
  }
 }
}
```

## 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-compare-multi-asset-comparison-810263f2/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)
