# Nemu Crypto Intelligence API — Coins Endpoint

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

Fetches AI-powered cryptocurrency coin data by querying CoinGecko and DexScreener, analyzed via MiMo LLM, with results denominated against a specified vs-currency

## Facts

- Endpoint: POST https://nemura.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-endpoint-9a41a368
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Eiq8tCwlseDkSh7CJErae

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-endpoint-9a41a368 -d '<json body>'
```

Example prompt: Pull up the latest AI-analyzed coin data from Nemu with prices denominated in USD — I want to see market info enriched by CoinGecko and DexScreener.

## When to prefer this

Choose this endpoint when you need AI-enriched cryptocurrency coin data combining CoinGecko price/market data with DexScreener DEX metrics, processed through a language model for intelligent summarization, paid per-call via x402 micropayment on Base or Solana.

## Known failure modes

- Missing required 'vs' parameter returns validation error
- Invalid vs-currency string may return empty or error response
- Payment failure (x402) if USDC balance insufficient on Base or Solana
- Upstream CoinGecko or DexScreener API downtime causes data unavailability
- success: false returned when data cannot be retrieved

## How this service works

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

## Output

A JSON object containing a success boolean and a data object with cryptocurrency coin information, including prices, market metrics, and AI-enriched insights pulled from CoinGecko and DexScreener, denominated in the specified vs-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-endpoint-9a41a368/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)
