# AllInOneCents Inflation Data API

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

Returns macroeconomic inflation data and statistics based on a natural language query

## Facts

- Endpoint: POST https://allinonecents.orbonomy.xyz/api/inflation
- 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-inflation-data-api-5dfef2b3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_S0zKyxRDYnJ0fcLPB7RiD

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

Example prompt: What is the current US inflation rate and can you give me the latest CPI figures?

## When to prefer this

Choose this endpoint when you need quick, cheap ($0.01) access to inflation or macroeconomic data via a simple natural language query interface, especially within an x402-enabled micropayment workflow on Base or Solana. Best for lightweight macro data lookups without needing a full Bloomberg or FRED API integration.

## Known failure modes

- Vague or unsupported query returns empty or unhelpful data object
- Payment not processed results in 402 response blocking access
- Success field returns false if query is malformed or outside supported scope
- Underlying data source may be stale or unavailable causing inaccurate results
- No query field provided returns validation error

## 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 metrics and statistics relevant to 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-5dfef2b3/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)
