# MacroLens Inflation Analysis API

> MacroLens Inflation Analysis API is a paid API for AI agents from marcrons.vercel.app, paid per call via x402, $0.4/call, status unknown (last checked 2026-09-14).

Returns AI-powered inflation analysis for a specified economic indicator using FRED and World Bank data processed by MiMo LLM

## Facts

- Endpoint: POST https://marcrons.vercel.app/api/inflation
- Price: $0.4/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/macrolens-inflation-analysis-api-0abdb32f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_MR43EINMUUAAaqXRAUiYp

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 macrolens-inflation-analysis-api-0abdb32f -d '<json body>'
```

Example prompt: Can you pull the MacroLens inflation analysis for the CPI indicator and give me the AI-interpreted summary of what the data shows?

## When to prefer this

Choose this endpoint when you need AI-interpreted inflation data combining both FRED and World Bank sources in a single call, rather than raw data pulls from either source individually. Ideal for agents that need narrative macroeconomic context alongside numeric inflation figures, particularly for investment research, policy analysis, or economic reporting workflows that require LLM-synthesized insight rather than raw time-series data.

## Known failure modes

- Invalid or unrecognized indicator code returns an error or empty data object
- Missing required 'indicator' field in request body results in validation failure
- FRED or World Bank upstream data unavailability may cause incomplete responses
- x402 payment failure on Base blockchain blocks the request before processing
- Indicator with no available data returns success:true but empty data object

## How this service works

AI-powered macro-economic analysis. FRED + World Bank data + MiMo LLM. 20 endpoints. x402 on Base.

## Output

Returns a JSON object with a success boolean and a data object containing inflation metrics and AI-generated macroeconomic interpretation for the requested indicator, sourced from FRED and World Bank datasets processed by the MiMo LLM

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "indicator"
 ],
 "properties": {
  "indicator": {
   "type": "string",
   "description": "indicator"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "success"
 ],
 "properties": {
  "data": {
   "type": "object"
  },
  "success": {
   "type": "boolean"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/macrolens-inflation-analysis-api-0abdb32f/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from marcrons.vercel.app](https://www.zero.xyz/host/marcrons.vercel.app/llms.txt)
