# AllInOneCents — Price Lookup API

> AllInOneCents — Price Lookup 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).

Returns price data for a given asset or query via a unified low-cost API endpoint supporting crypto, stocks, and other markets

## Facts

- Endpoint: POST https://allinonecents.orbonomy.xyz/api/price
- 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-price-lookup-api-c1cf325e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_CNVCxJDxP7SN4UoG_mCIN

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-price-lookup-api-c1cf325e -d '<json body>'
```

Example prompt: What's the current price of Bitcoin? Use the AllInOneCents price endpoint and send the query 'Bitcoin'.

## When to prefer this

Choose this endpoint when you need a cheap ($0.01), fast price lookup for crypto (including Base and Solana ecosystem tokens), stocks, or macro assets and do not need a rich, schema-complete data contract. Ideal for cost-sensitive agents making frequent price queries across asset classes without requiring dedicated per-asset API integrations.

## Known failure modes

- Query string is ambiguous or unrecognized — returns success: false with empty data
- Asset not covered by the platform — no price returned
- Payment not processed — 402 response requiring $0.01 USDC payment
- Malformed request body missing the required 'query' field — 400 error
- Upstream data provider unavailable — may return stale or null 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 the price result and a 'success' boolean indicating whether the lookup was successful.

## 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-price-lookup-api-c1cf325e/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)
