# AllInOneCents Earnings API

> AllInOneCents Earnings 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).

Returns earnings data (e.g. corporate earnings reports, EPS, revenue) for a given query via a unified mega-API platform at $0.01 per call.

## Facts

- Endpoint: POST https://allin-onecents.orbonomy.xyz/api/earnings
- 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-earnings-api-d253339a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_YlejDOFkrwautGW7I3hz3

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-earnings-api-d253339a -d '<json body>'
```

Example prompt: Can you pull the latest quarterly earnings data for Apple — specifically the EPS and revenue figures from their most recent report?

## When to prefer this

Choose this endpoint when you need a low-cost ($0.01), quick earnings data lookup and don't require a dedicated financial data provider with SLA guarantees. Best for prototyping, lightweight agents, or use cases where budget is a constraint and approximate or aggregated earnings data is sufficient.

## Known failure modes

- Query string is too vague or unrecognized — returns success: false with empty or null data
- Company or ticker not found in database — returns empty data object
- Malformed request body missing required 'query' field — returns error
- Payment not processed correctly via x402 — request blocked before reaching endpoint
- Downstream data source unavailable — may return partial or stale 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

Returns a JSON object with a data field containing earnings-related information (such as EPS, revenue, and earnings report details) and a success boolean indicating whether the query was fulfilled.

## 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-earnings-api-d253339a/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)
