# AllInOneCents Mega API — Crypto Endpoint

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

Provides cryptocurrency data and analytics via a unified low-cost query interface at $0.01 per call

## Facts

- Endpoint: POST https://allin-onecents.orbonomy.xyz/api/crypto
- 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-crypto-endpoint-b07dfc9d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_0ctdU248Iz0ZiYYad392t

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-crypto-endpoint-b07dfc9d -d '<json body>'
```

Example prompt: What's the current price and market cap of Solana? Query it through AllInOneCents so it only costs a penny.

## When to prefer this

Choose this endpoint when you need cheap, per-call crypto data without a subscription — ideal for AI agents making occasional or low-volume lookups where paying $0.01 USDC per query is preferable to a monthly API plan. Best for queries about Base or Solana chain assets given its dual-chain focus.

## Known failure modes

- Vague or malformed query string returns empty or unhelpful data
- Payment not included or rejected results in 402 error
- Unsupported cryptocurrency or token name returns null data
- Network or provider downtime causes 500 error
- Rate limiting if too many calls made in quick succession

## 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 cryptocurrency information relevant to the query — such as price, market cap, volume, or other on-chain metrics, depending on the query string provided.

## 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-crypto-endpoint-b07dfc9d/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)
