# AllInOneCents — Indicator API

> AllInOneCents — Indicator API 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-14).

Returns financial, crypto, medical, macro, or utility indicator data based on a natural language query via a unified low-cost API.

## Facts

- Endpoint: POST https://allinonecents.orbonomy.xyz/api/indicator
- 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-indicator-api-4d578917
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_0Aak57vDL8FaGMgqiluxs

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-indicator-api-4d578917 -d '<json body>'
```

Example prompt: Using the AllInOneCents Mega API, query the indicator endpoint with 'BTC RSI 14-day' and return the current reading for me.

## When to prefer this

Choose this endpoint when you need cheap ($0.01), broad-coverage indicator lookups across crypto, stocks, macro, medical, or utility domains without needing a specialized premium API. Best for agents that need lightweight, multi-domain data access with x402 micropayment support on Base or Solana.

## Known failure modes

- Ambiguous or unsupported query string returns empty or null data object
- Unknown indicator name results in success:false or empty result
- Malformed JSON body causes 400 error
- Payment not attached or insufficient causes 402 Payment Required
- Rate limiting or server overload returns 429 or 500 error

## How this service works

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

## Output

A JSON object with a 'success' boolean and a 'data' object containing the indicator result relevant to the query, such as a metric value, reading, or data point from the requested domain.

## 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-indicator-api-4d578917/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)
