# Nemu Crypto OHLC Data Endpoint

> Nemu Crypto OHLC Data 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-14).

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

## Facts

- Endpoint: POST https://nemura.orbonomy.xyz/api/ohlc
- Price: $0.03/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-ohlc-data-endpoint-e60e45bd
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ZWoLTKN8lKA9j53-Ec48G

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

Example prompt: Can you pull the OHLC candlestick price data for bitcoin using its CoinGecko ID 'bitcoin' from the Nemu crypto intelligence API?

## When to prefer this

Use this endpoint when you need OHLC candlestick/price-bar data for a specific cryptocurrency token and are comfortable paying per-call via x402 micropayments on Base or Solana. Prefer this over raw CoinGecko or DexScreener direct calls when you want AI-augmented crypto intelligence in a unified API with consistent response schemas.

## Known failure modes

- Invalid or unknown cryptocurrency ID returns success: false or empty data
- Missing required 'id' field returns a validation error
- Network timeout or upstream CoinGecko/DexScreener outage causes failure
- Payment not processed (x402) results in 402 Payment Required response
- Unsupported token on either CoinGecko or DexScreener returns empty or error response

## 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 OHLC (Open, High, Low, Close) candlestick price series for the requested cryptocurrency, sourced from CoinGecko or DexScreener data aggregation.

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