# Nemu Crypto Price Lookup

> Nemu Crypto Price Lookup is a paid API for AI agents from nemura.orbonomy.xyz, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-15).

Fetches current cryptocurrency price data for one or more tokens by their CoinGecko IDs

## Facts

- Endpoint: POST https://nemura.orbonomy.xyz/api/price
- Price: $0.02/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-price-lookup-073a6c93
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_5yUmwOcW-NAhkiGIOQ1xX

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-price-lookup-073a6c93 -d '<json body>'
```

Example prompt: What are the current prices for bitcoin, ethereum, and solana? Pull live data from Nemu using their CoinGecko-powered price endpoint with ids 'bitcoin,ethereum,solana'.

## When to prefer this

Choose this endpoint when you need quick, real-time cryptocurrency price lookups using CoinGecko token IDs, especially within workflows already using the Nemu crypto intelligence suite. It is well-suited for agents that need to embed current price data into analysis, alerts, or reports and are comfortable with micropayment-based x402 access on Base or Solana.

## Known failure modes

- Invalid or unrecognized CoinGecko token IDs return an error or empty data
- Missing required 'ids' field causes a 400 validation error
- Payment failure via x402 on Base or Solana blocks the request
- CoinGecko upstream outage may cause delayed or failed responses
- Rate limits or quota exhaustion may result in 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 current price information for the requested cryptocurrency IDs, sourced from CoinGecko.

## Request schema (JSON Schema)

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

## 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-price-lookup-073a6c93/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)
