# Nemu Crypto Intelligence API — Coins Lookup

> Nemu Crypto Intelligence API — Coins 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-14).

Returns AI-powered cryptocurrency coin data by querying CoinGecko and DexScreener, processed through MiMo LLM, for a given versus/base currency

## Facts

- Endpoint: POST https://nemumu.orbonomy.xyz/api/coins
- Price: $0.03/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-api-coins-lookup-702b4eed
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_fp5h8VpQF5Kwe103jMP72

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-coins-lookup-702b4eed -d '<json body>'
```

Example prompt: Can you pull me the latest crypto coin data priced versus USD using Nemu's AI-powered intelligence API?

## When to prefer this

Use this endpoint when you need AI-analyzed cryptocurrency coin data aggregated from CoinGecko and DexScreener, particularly when you need prices denominated in a specific versus currency, and you want the enrichment of a LLM layer (MiMo) on top of raw market data. Prefer over raw CoinGecko API when you want pre-processed, intelligence-enriched output.

## Known failure modes

- Missing required 'vs' parameter returns validation error
- Invalid vs currency string may return empty or error data
- Payment failure (x402) if USDC balance on Base or Solana is insufficient
- Upstream CoinGecko or DexScreener outage causing data unavailability
- success: false with empty data object on provider errors

## 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-enriched cryptocurrency coin information (prices, market metrics, etc.) sourced from CoinGecko and DexScreener for the specified versus currency.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "vs"
 ],
 "properties": {
  "vs": {
   "type": "string",
   "description": "vs"
  }
 }
}
```

## 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-coins-lookup-702b4eed/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)
