# Nemu Crypto Price Lookup

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

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

## Facts

- Endpoint: POST https://nemumu.orbonomy.xyz/api/price
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/nemu-crypto-price-lookup-ea5640a9
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_B6brlyPMOVcmeDsqXIjBA

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

Example prompt: What's the current price of Bitcoin and Ethereum? Look them up by their CoinGecko IDs bitcoin and ethereum.

## When to prefer this

Use this endpoint when you need real-time cryptocurrency price data by CoinGecko ID, especially in an agentic context where you want to pay per call via x402 on Base or Solana without managing subscriptions. Prefer over direct CoinGecko API if you need a pay-as-you-go micropayment model.

## Known failure modes

- Invalid or unrecognized CoinGecko coin ID returns error or empty data
- Network timeout from upstream CoinGecko API
- Payment failure over x402 protocol results in 402 response
- Missing required 'ids' field returns validation error
- Rate limiting from underlying data provider

## 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 fetched via 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-ea5640a9/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)
