# AllInOneCents Inflation Data API

> AllInOneCents Inflation Data 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).

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

## Facts

- Endpoint: POST https://allin-onecents.orbonomy.xyz/api/inflation
- 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-inflation-data-api-c2b4169a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_6GW0HgcqY0NRjULYmn6qd

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-inflation-data-api-c2b4169a -d '<json body>'
```

Example prompt: What is the current US inflation rate? Query the AllInOneCents inflation endpoint with 'current US CPI inflation rate 2024'.

## When to prefer this

Choose this endpoint when you need a cheap ($0.01), quick lookup of inflation or CPI data via a simple natural language query, especially within a pipeline that already uses AllInOneCents for other macro or financial data. Best when precision requirements are moderate and cost is a priority.

## Known failure modes

- Vague or ambiguous query returns generic or empty data object
- Query for unsupported region or metric may return empty data with success:true
- Malformed or missing 'query' field returns an error or success:false
- Service downtime or payment failure returns non-200 response
- Unrecognized time period in query may yield no results

## 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 inflation-related figures (rate, CPI, trend, or other macro metrics depending on the query) and a 'success' boolean indicating whether the request was fulfilled.

## 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-inflation-data-api-c2b4169a/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)
