# AllInOneCents — Price Lookup API

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

Returns current price data for a queried asset (crypto, stock, or other) via a unified low-cost API endpoint

## Facts

- Endpoint: POST https://allin-onecents.orbonomy.xyz/api/price
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/allinonecents-price-lookup-api-d8bdf6f8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_CH4E4eXNCvw2vV0Rgdz14

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-d8bdf6f8 -d '<json body>'
```

Example prompt: What's the current price of Bitcoin right now? Send the query 'Bitcoin' to the AllInOneCents price endpoint and give me the latest market price.

## When to prefer this

Choose this endpoint when you need a cheap ($0.01), quick price lookup for a broad range of asset types (crypto, stocks, macro instruments) without needing deep historical data or advanced charting — ideal for agents doing lightweight portfolio checks or single-asset price queries.

## Known failure modes

- Missing or empty query string returns error
- Unrecognized asset ticker or name may return empty or null data
- Network timeout or server unavailability returns failure response
- Malformed JSON request body returns 400-level error
- Payment not processed (x402) results in 402 Payment Required before data is returned

## 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 price information for the queried asset (crypto, stock, or other financial instrument).

## 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-d8bdf6f8/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)
