# Nemu Crypto Intelligence API — OHLC Data

> Nemu Crypto Intelligence API — OHLC Data is a paid API for AI agents from nremum.vercel.app, 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 cryptocurrency by its ID, powered by CoinGecko and DexScreener data sources

## Facts

- Endpoint: POST https://nremum.vercel.app/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-intelligence-api-ohlc-data-ed25415f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_6j8EG_g1Wm-dglbtUtQdi

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

Example prompt: Can you pull the OHLC candlestick price data for Bitcoin — I want to see the open, high, low, and close prices to do some technical analysis.

## When to prefer this

Choose this endpoint when you need structured OHLC candlestick data for a specific cryptocurrency for technical analysis, charting, or price range evaluation. It is especially useful when working with both major coins (via CoinGecko) and DeFi/DEX tokens (via DexScreener). Prefer this over generic price endpoints when you specifically need open/high/low/close candle structure rather than just a spot price.

## Known failure modes

- Invalid or unknown coin ID returns success: false with no data
- Missing required 'id' field results in a validation error
- Network timeout if upstream CoinGecko or DexScreener APIs are unavailable
- Payment failure if USDC balance is insufficient for the $0.03 per-call fee
- Rate limiting if too many requests are made in a short period

## 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 candlestick price information (open, high, low, close values) for the requested cryptocurrency, sourced from CoinGecko and DexScreener.

## 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-ed25415f/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)
