# Nemu Crypto Intelligence API — Market Endpoint

> Nemu Crypto Intelligence API — Market 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-15).

Fetches AI-powered crypto market data and analysis for a given currency pair using CoinGecko, DexScreener, and MiMo LLM

## Facts

- Endpoint: POST https://nemura.orbonomy.xyz/api/market
- 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-api-market-endpoint-b8322d21
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_8gjlwsfVcGU7Jb2Tp4VXX

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-market-endpoint-b8322d21 -d '<json body>'
```

Example prompt: Can you pull the AI-powered market analysis for ETH versus USDC using Nemu's crypto intelligence — I want to see CoinGecko and DexScreener data combined with the MiMo LLM insights for that pair?

## When to prefer this

Choose this endpoint when you need AI-synthesized crypto market data combining CoinGecko fundamentals, DexScreener on-chain DEX data, and LLM-generated analysis for a specific quote currency pair — especially when you want more than raw price data and need an interpreted market intelligence output on Base or Solana ecosystems

## Known failure modes

- Invalid or unrecognized 'vs' currency string returns error or empty data
- Payment not fulfilled via x402 results in 402 Payment Required response
- Upstream CoinGecko or DexScreener data unavailable causes partial or failed response
- success: false returned with no data object if query cannot be resolved
- Network timeout if MiMo LLM analysis takes too long

## How this service works

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

## Output

Returns a success boolean and a data object containing AI-synthesized crypto market information (prices, market metrics, on-chain data) for the requested currency pair, sourced from CoinGecko and DexScreener and analyzed by MiMo LLM

## 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-market-endpoint-b8322d21/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)
