# AllInOneCents Interest Rates API

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

Retrieves current or historical interest rate data (central bank rates, benchmark rates, yield curves) based on a natural language query.

## Facts

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

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

Example prompt: What is the current Federal Reserve federal funds rate, and can you also pull the latest ECB and Bank of England benchmark interest rates for comparison?

## When to prefer this

Use this endpoint when you need quick, cheap ($0.01) access to global interest rate data — central bank policy rates, benchmark rates, or yield data — via a simple natural language query. Prefer it for macro research, financial comparison tasks, or enriching financial analysis pipelines where cost efficiency matters and a unified API platform is acceptable.

## Known failure modes

- Vague or ambiguous query returns incomplete or generic rate data
- Query for unsupported central bank or country returns empty or error response
- Service downtime returns non-200 status or timeout
- Payment not processed correctly results in 402 response
- Malformed query string returns validation error or unhelpful result

## 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 interest rate information matching the query — such as central bank policy rates, benchmark lending rates, yield figures, or historical rate series — depending on what was requested.

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