# AllInOneCents — Interest Rates API

> AllInOneCents — Interest Rates 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-13).

Returns current or historical interest rate data based on a natural language query, for $0.01 per call.

## Facts

- Endpoint: POST https://allinonecents.orbonomy.xyz/api/interest-rates
- 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-interest-rates-api-f58b2518
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_yJfYtfHz7fnNtzmsvWrkb

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-interest-rates-api-f58b2518 -d '<json body>'
```

Example prompt: What are the current US Federal Reserve interest rates and the ECB rate? I need a quick macro snapshot for my financial report.

## When to prefer this

Choose this endpoint when you need quick, cheap ($0.01) interest rate or monetary policy data via a simple natural language query, and you don't need a full-featured financial data subscription. Ideal for lightweight macroeconomic lookups in agent workflows where cost efficiency matters.

## Known failure modes

- Vague or ambiguous query string may return irrelevant or empty data
- Query for unsupported rate types or obscure regional rates may yield no results
- Service outage or payment failure returns non-200 response
- Malformed query field returns validation error
- Rate data may be stale or delayed depending on underlying data sources

## How this service works

Unified API platform — 60 endpoints across crypto, medical, macro, stocks, and utility. Dual-chain (Base + Solana). All $0.01.

## Output

A JSON object with a 'data' field containing interest rate information (e.g. central bank rates, benchmark rates, or related macro data) and a 'success' boolean indicating whether the query was resolved successfully.

## 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-interest-rates-api-f58b2518/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)
