# Nemu Crypto Price Lookup

> Nemu Crypto Price Lookup is a paid API for AI agents from nremum.vercel.app, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-14).

Fetches current cryptocurrency price data for one or more coins by their CoinGecko-style IDs

## Facts

- Endpoint: POST https://nremum.vercel.app/api/price
- Price: $0.02/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-price-lookup-8366f089
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_pVPgMLjzkchydyH-IufMp

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

Example prompt: What's the current price of bitcoin and ethereum? Use their CoinGecko IDs 'bitcoin,ethereum' to look it up.

## When to prefer this

Choose this endpoint when you need fast, lightweight real-time cryptocurrency price lookups by CoinGecko coin ID, especially in x402-payment-enabled agent workflows on Base or Solana. Prefer it over full DexScreener endpoints when you need established large-cap coin prices rather than DEX-traded tokens.

## Known failure modes

- Invalid or unrecognized coin IDs return an error or empty data object
- Missing required 'ids' field causes a validation failure
- Network or upstream CoinGecko outage may cause success:false responses
- Rate limiting or payment failure (x402) may block the request

## 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 price information for each requested cryptocurrency ID, sourced from CoinGecko via the Nemu intelligence layer.

## 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-8366f089/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from nremum.vercel.app](https://www.zero.xyz/host/nremum.vercel.app/llms.txt)
