# AllInOneCents Mega API

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

Unified multi-domain API accepting a natural language query and routing it across 60 endpoints covering crypto, medical, macro, stocks, and utility data at $0.01 per call

## Facts

- Endpoint: POST https://allin-onecents.orbonomy.xyz/api/consumer
- 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-316c9bfe
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_iUM8Ss2m0DhPdHY2zNuEZ

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-316c9bfe -d '<json body>'
```

Example prompt: What's the current price and 24-hour change for Bitcoin — use the AllInOneCents mega API to look it up for a cent?

## When to prefer this

When you need cheap, broad-coverage data lookups across crypto, stocks, macro, or medical domains at $0.01 per call and don't want to maintain multiple API integrations — best when query intent is flexible and cost minimization matters more than guaranteed structured output schemas.

## Known failure modes

- Query string is ambiguous or not understood by the routing layer, returning empty or irrelevant data
- Success false with no meaningful data if the underlying sub-endpoint is unavailable
- Rate limits or payment failures returning 402 if USDC payment is not processed
- Unrecognized domain in query results in generic fallback or error
- Response schema is generic and actual output structure varies unpredictably by query type

## 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 result of the routed query — content varies based on which of the 60 domain endpoints the query was routed to (e.g. price, indicator, medical info, stock 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-316c9bfe/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)
