# AllInOneCents OHLC — Stock & Crypto Candlestick Data

> AllInOneCents OHLC — Stock & Crypto Candlestick Data is a paid API for AI agents from allinonecents.orbonomy.xyz, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Returns OHLC (open, high, low, close) candlestick price data for stocks or crypto assets via a unified query interface at $0.01 per call.

## Facts

- Endpoint: POST https://allinonecents.orbonomy.xyz/api/ohlc
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/allinonecents-ohlc-stock-crypto-candlestick-data-49e2e17b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ktVz0COI6r7js7d-v5mpe

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 allinonecents-ohlc-stock-crypto-candlestick-data-49e2e17b -d '<json body>'
```

Example prompt: Can you pull the OHLC candlestick data for Bitcoin (BTC) — I want to see the open, high, low, and close prices for the latest period?

## When to prefer this

Choose this endpoint when you need cheap ($0.01), quick OHLC price data for stocks or crypto assets and don't require a premium data provider. Best suited for lightweight agents, prototyping, or cost-sensitive pipelines that need candlestick data without paying for enterprise market data subscriptions.

## Known failure modes

- Unknown ticker or asset name returns empty data or error
- Malformed query string returns failure response
- Unsupported asset or market type may return no data
- Transient upstream data provider outage returns 500 or error
- Payment failure results in 402 response before data is returned

## How this service works

Unified API platform — 60 endpoints across crypto, medical, macro, stocks, and utility. Dual-chain (Base + Solana). All $0.01.

## Output

Returns a JSON object with a success flag and a data object containing OHLC (open, high, low, close) price values for the queried asset, suitable for technical analysis or charting purposes.

## Request schema (JSON Schema)

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

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "data": {
   "type": "object"
  },
  "success": {
   "type": "boolean"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/allinonecents-ohlc-stock-crypto-candlestick-data-49e2e17b/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from allinonecents.orbonomy.xyz](https://www.zero.xyz/host/allinonecents.orbonomy.xyz/llms.txt)
