# AllInOneCents Mega API — Indicator Endpoint

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

Accepts a natural language or structured query and returns indicator data spanning crypto, medical, macro, stocks, and utility domains at $0.01 per call.

## Facts

- Endpoint: POST https://allin-onecents.orbonomy.xyz/api/indicator
- 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-mega-api-indicator-endpoint-32446303
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_g8XJZK-shr_HgeJb3F11y

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-indicator-endpoint-32446303 -d '<json body>'
```

Example prompt: Using AllInOneCents, look up the RSI indicator for Bitcoin right now — I want the current value pulled from the indicator endpoint.

## When to prefer this

Use this endpoint when you need cheap ($0.01), broad-domain indicator lookups — especially for crypto, macro, or stock indicators — without committing to a premium specialized API. Best when you need occasional, lightweight data pulls across diverse domains from a single unified interface on Base or Solana.

## Known failure modes

- Query string too vague or unsupported indicator name returns empty or error data
- Payment failure (x402) if USDC balance is insufficient
- Unknown domain or misspelled indicator returns null data object
- Server-side timeout if the underlying data source is unavailable
- success: false with no further detail if query is malformed

## 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 requested indicator value or metric, scoped to the queried domain (crypto, macro, stocks, medical, or utility).

## 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-indicator-endpoint-32446303/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)
