# AllInOneCents OHLC Data Endpoint

> AllInOneCents OHLC Data Endpoint is a paid API for AI agents from allin-onecents.orbonomy.xyz, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Returns OHLC (Open, High, Low, Close) price data for a given asset via a natural language query, priced at $0.01 per call.

## Facts

- Endpoint: POST https://allin-onecents.orbonomy.xyz/api/ohlc
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/allinonecents-ohlc-data-endpoint-fdfa8987
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_hjVpHLO1fxtpSjbD60Ek9

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

Example prompt: Can you pull the OHLC candlestick data for Bitcoin over the past 7 days? I want to see the open, high, low, and close prices for each day.

## When to prefer this

Choose this endpoint when you need OHLC/candlestick price data for crypto (including Base and Solana ecosystem tokens) or stocks at minimal cost ($0.01 per call). Useful when building charting, technical analysis, or market monitoring tools that require structured price bar data via simple natural language queries.

## Known failure modes

- Ambiguous or malformed query string returns empty or incorrect data
- Unknown or unsupported ticker symbol may return null data or error
- Payment failure via x402 results in 402 response and no data returned
- Network timeout or upstream data provider unavailability
- Query string does not specify time range leading to unclear results

## 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 boolean and a data object containing OHLC (open, high, low, close) price bars for the queried asset and time period.

## 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-data-endpoint-fdfa8987/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from allin-onecents.orbonomy.xyz](https://www.zero.xyz/host/allin-onecents.orbonomy.xyz/llms.txt)
