# AllInOneCents Exchange Rate API

> AllInOneCents Exchange Rate 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-14).

Fetches currency or crypto exchange rate data via a simple natural-language query input for $0.01 per call

## Facts

- Endpoint: POST https://allin-onecents.orbonomy.xyz/api/exchange-rate
- 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-exchange-rate-api-0e8fb66b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_eSO9ctOT3j6D9hsmddk5e

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-exchange-rate-api-0e8fb66b -d '<json body>'
```

Example prompt: What is the current exchange rate from USD to EUR? Use the AllInOneCents exchange rate endpoint with the query 'USD to EUR exchange rate'.

## When to prefer this

When you need a cheap ($0.01), low-friction exchange rate or currency conversion lookup that accepts natural-language queries and supports both crypto and fiat pairs. Best for agent workflows that need casual, flexible querying without strict schema requirements.

## Known failure modes

- Query string is ambiguous or unsupported currency pair — may return empty or null data
- Payment not processed — 402 response blocking access
- Generic or vague query string results in incomplete rate data
- Service unavailable or upstream data source unreachable — success: false

## 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 the exchange rate or conversion information for the queried currency pair or asset.

## 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-exchange-rate-api-0e8fb66b/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)
