# Nemu Crypto Intelligence API — OHLC Data

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

Fetches OHLC (Open, High, Low, Close) candlestick price data for a specified cryptocurrency by ID

## Facts

- Endpoint: POST https://nemumu.orbonomy.xyz/api/ohlc
- Price: $0.03/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-intelligence-api-ohlc-data-bf10cdc9
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_wklX2rNN4KeUhZglWCqh-

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-ohlc-data-bf10cdc9 -d '<json body>'
```

Example prompt: Can you pull the OHLC candlestick price data for bitcoin using its CoinGecko ID 'bitcoin'?

## When to prefer this

Use this endpoint when you need structured OHLC candlestick price data for a specific cryptocurrency, particularly when building charts, performing technical analysis, or backtesting trading strategies. Best suited when you already know the CoinGecko coin ID and need raw OHLC data rather than AI-generated narrative analysis.

## Known failure modes

- Invalid or unknown coin ID returns failure response
- Coin ID not found on CoinGecko or DexScreener returns error
- Missing required 'id' field returns validation error
- Payment not fulfilled results in 402 Payment Required
- Network or upstream data provider outage causes timeout or error response

## 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 OHLC (Open, High, Low, Close) candlestick price data for the requested cryptocurrency.

## Request schema (JSON Schema)

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

## 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-ohlc-data-bf10cdc9/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)
