# Nemu Crypto Intelligence — Coin Data Lookup

> Nemu Crypto Intelligence — Coin Data Lookup is a paid API for AI agents from nremum.vercel.app, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-15).

Fetches AI-powered cryptocurrency analysis and data for a given coin ID using CoinGecko, DexScreener, and MiMo LLM

## Facts

- Endpoint: POST https://nremum.vercel.app/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-19b7b24a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_cxmJfLsTug2mawHS2tVjI

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-19b7b24a -d '<json body>'
```

Example prompt: Can you pull up the Nemu crypto intelligence analysis for bitcoin — I want to see the AI-powered market data and insights for it?

## When to prefer this

Choose this endpoint when you need aggregated, AI-enriched cryptocurrency data for a specific coin in a single call — combining CoinGecko market data with DexScreener DEX liquidity signals and an LLM-generated summary. Prefer it over raw CoinGecko or DexScreener calls when you want pre-synthesized intelligence rather than raw numbers, and when paying per-call via x402 on Base or Solana is acceptable.

## Known failure modes

- Invalid or unrecognized coin ID returns success: false with no data
- Network timeout if upstream CoinGecko or DexScreener APIs are slow
- Payment failure if USDC balance on Base or Solana is insufficient for the $0.03 x402 charge
- Coin ID not found on CoinGecko returns empty or error response
- Rate limiting or quota exhaustion on underlying data providers

## 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-powered analysis of the requested cryptocurrency, aggregating CoinGecko market data, DexScreener DEX metrics, and MiMo LLM-generated insights for the specified coin ID.

## 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-19b7b24a/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from nremum.vercel.app](https://www.zero.xyz/host/nremum.vercel.app/llms.txt)
