# AllInOneCents Mega API — Series Endpoint

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

Accepts a natural language query and routes it to one of 60 unified data endpoints spanning crypto, medical, macro-economics, stocks, and utility topics at $0.01 per call

## Facts

- Endpoint: POST https://allinonecents.orbonomy.xyz/api/series
- 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-mega-api-series-endpoint-c79b40a1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_yiftCnb5umQOLXs4qowQV

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-series-endpoint-c79b40a1 -d '<json body>'
```

Example prompt: Can you pull the latest Bitcoin price series and recent macroeconomic inflation data for the US — I want both in one cheap call through AllInOneCents?

## When to prefer this

Choose this endpoint when you need cheap ($0.01) access to a wide variety of data domains — crypto, medical, macro, stocks, and utilities — through a single POST interface with a simple string query, and you don't need strongly-typed schemas or guaranteed structured output per domain. Best for exploratory or multi-domain use cases where flexibility outweighs schema rigor.

## Known failure modes

- Query string too vague to route to a specific endpoint — data object may be empty or null
- Payment not processed — 402 response requiring $0.01 USDC via x402 protocol
- Unsupported query domain — endpoint returns success:false
- Rate limiting or server unavailability — 5xx error
- Ambiguous query matching multiple domains — may return unexpected domain data

## 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 boolean 'success' field and a 'data' object containing the query result from whichever of the 60 domain endpoints matched the natural language input — content varies by query domain (crypto, medical, macro, stocks, 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-series-endpoint-c79b40a1/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)
