# Nemu Crypto Intelligence — Coin Data Lookup

> Nemu Crypto Intelligence — Coin Data Lookup 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).

Fetches AI-powered analysis and market data for a specific cryptocurrency by its CoinGecko coin ID

## Facts

- Endpoint: POST https://nemumu.orbonomy.xyz/api/coin
- 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-coin-data-lookup-56311626
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_tCmO2mwnzd5xHEJLKgNYq

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-coin-data-lookup-56311626 -d '<json body>'
```

Example prompt: Can you pull up the Nemu crypto intelligence report for 'solana' — I want the AI-powered market analysis combining CoinGecko and DexScreener data for it?

## When to prefer this

Use this endpoint when you need a single-coin intelligence report combining real-time market data from CoinGecko and DexScreener with LLM-generated analysis — particularly useful when you want more than raw numbers and need synthesized insights about a specific cryptocurrency. Prefer this over raw CoinGecko API calls when AI interpretation is desired.

## Known failure modes

- Invalid or unknown coin ID returns failure response with success:false
- Network errors to upstream CoinGecko or DexScreener APIs cause degraded or empty data
- Payment failure via x402 on Base or Solana blocks access
- Misspelled coin ID (e.g. 'btc' instead of 'bitcoin') returns no data or 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 AI-synthesized coin intelligence — likely including price, market cap, volume, and LLM-generated analysis derived from CoinGecko and DexScreener sources for the requested coin.

## 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-coin-data-lookup-56311626/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)
