# AllInOneCents Exchange Rate API

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

Fetches current or historical exchange rate data for currency or asset pairs via a unified text query interface

## Facts

- Endpoint: POST https://allinonecents.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-6049a42a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_y_Kg_4Ts0tm8txbRN8rzt

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

Example prompt: What is the current exchange rate from US dollars to euros? Use the AllInOneCents mega API exchange rate endpoint.

## When to prefer this

Prefer this endpoint when you need a cheap ($0.01), quick lookup of exchange rates for fiat currencies, crypto pairs, or macro assets and want a simple text-query interface without needing to specify structured pair parameters. Good for ad-hoc rate lookups inside larger automated workflows.

## Known failure modes

- Vague or malformed query string returns unhelpful or empty data
- Unsupported currency pair returns null or error in data field
- Network or provider outage results in success: false
- Missing required query field returns 400 validation error
- Payment failure (x402) blocks the call before it reaches the 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 data field containing exchange rate information and a success boolean. The data object typically includes the rate or conversion value for the queried currency or asset pair.

## 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-6049a42a/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)
