# AllInOneCents Mega API — Company Endpoint

> AllInOneCents Mega API — Company 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 about a company and returns company-related data via a unified multi-domain API platform.

## Facts

- Endpoint: POST https://allin-onecents.orbonomy.xyz/api/company
- 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-company-endpoint-5af3bd31
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_gt0GE-dlIKABa6bbAaWNz

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-company-endpoint-5af3bd31 -d '<json body>'
```

Example prompt: Can you pull up company information for Apple Inc. — things like their sector, description, and key financials?

## When to prefer this

Choose this endpoint when you need quick, low-cost ($0.01) company profile or financial data via a simple natural language query, especially within an x402 micropayment workflow on Base or Solana. Prefer over larger data providers when cost efficiency matters and the query is simple enough to express as a string.

## Known failure modes

- Empty or ambiguous query string returns vague or empty data object
- Unknown company name or ticker may return no results or an error
- Malformed JSON body results in 400-level error
- Payment not completed results in 402 response blocking access
- Service downtime across the unified platform may affect this endpoint

## 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 company-related information such as business profile, sector, description, or financial details depending on the query submitted.

## 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-company-endpoint-5af3bd31/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)
