# AllInOneCents Earnings Data API

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

Retrieves corporate earnings data for a given query (company, ticker, or date range) via a unified micro-payment API.

## Facts

- Endpoint: POST https://allinonecents.orbonomy.xyz/api/earnings
- 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-earnings-data-api-2283b4cf
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_tyoCwz_cFOs2i4X7eAFFI

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-data-api-2283b4cf -d '<json body>'
```

Example prompt: What were Apple's earnings last quarter — revenue, EPS, and net income? Look it up using the AllInOneCents earnings endpoint.

## When to prefer this

Use this endpoint when you need quick, cheap ($0.01) corporate earnings lookups without subscribing to a full financial data provider. Best for lightweight agents that need occasional earnings figures rather than streaming or bulk financial data.

## Known failure modes

- Missing or empty query field returns validation error
- Unrecognized ticker or company name may return empty or null data
- Payment failure (402) if USDC balance is insufficient
- Vague or ambiguous query may return unexpected or irrelevant results
- Service may not cover all tickers or historical periods

## 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 success boolean and a data object containing earnings-related financial information such as revenue, EPS, net income, or other quarterly results for the queried company or ticker.

## 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-data-api-2283b4cf/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)
