# Nemu Crypto Intelligence API — Coin Data Endpoint

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

Fetches AI-powered crypto analysis and on-chain data for a specific coin by ID, aggregating CoinGecko, DexScreener, and MiMo LLM insights

## Facts

- Endpoint: POST https://nemura.orbonomy.xyz/api/coin
- Price: $0.03/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-api-coin-data-endpoint-e0e94911
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_AVFmfYLEsl-CMWho_RSef

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-coin-data-endpoint-e0e94911 -d '<json body>'
```

Example prompt: Pull the full Nemu AI crypto analysis for bitcoin — I want CoinGecko market data, DexScreener on-chain metrics, and the MiMo LLM summary all in one go.

## When to prefer this

Choose this endpoint when you need a single, AI-enriched snapshot of a cryptocurrency combining on-chain data, market metrics, and LLM-generated analysis — particularly useful when you want more than raw price data and need actionable intelligence about a specific coin.

## Known failure modes

- Invalid or unrecognized coin ID returns success:false or empty data
- Upstream CoinGecko or DexScreener API unavailable causes partial or failed response
- Payment not completed (x402) results in 402 status before data is returned
- Malformed request body missing required 'id' field returns validation error

## 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 flag and a data object containing aggregated coin information including price, market metrics, and AI-generated analysis from MiMo LLM, sourced from CoinGecko and DexScreener.

## 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-coin-data-endpoint-e0e94911/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)
