# AllInOneCents Mega API — History Endpoint

> AllInOneCents Mega API — History 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-13).

Retrieves historical data (crypto, medical, macro, stocks, or utility) based on a natural-language or structured query string

## Facts

- Endpoint: POST https://allin-onecents.orbonomy.xyz/api/history
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/allinonecents-mega-api-history-endpoint-674bbc08
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_904svShJt1a2z91hV9_-D

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-mega-api-history-endpoint-674bbc08 -d '<json body>'
```

Example prompt: Pull historical price data for Bitcoin over the last 30 days — I want the full history record from AllInOneCents.

## When to prefer this

Choose this endpoint when you need historical data cheaply ($0.01 per call) across a wide range of domains (crypto, stocks, macro, medical, utility) without needing a specialized provider for each. Ideal for agents that need broad multi-domain historical lookups in a single unified API.

## Known failure modes

- Missing or empty 'query' field returns a validation error
- Ambiguous query string may return irrelevant or empty data object
- Payment failure (x402) causes request to be rejected before processing
- Malformed query may return success:false with empty data
- Rate limiting or server errors may return HTTP 5xx responses

## 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 the historical records matching the query, spanning possible domains including crypto, stocks, macro, medical, and utility data.

## 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-mega-api-history-endpoint-674bbc08/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)
