# MacroLens Interest Rates Analysis

> MacroLens Interest Rates Analysis 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 analysis of interest rate trends using FRED data and the MiMo LLM, starting from a specified date

## Facts

- Endpoint: POST https://marcrons.vercel.app/api/interest-rates
- 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-interest-rates-analysis-b0302988
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Xui144gRXqgsn2qXPScfo

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-interest-rates-analysis-b0302988 -d '<json body>'
```

Example prompt: Pull an AI-powered interest rate analysis from MacroLens starting from January 2022 — I want FRED-backed data with an LLM summary of the trends.

## When to prefer this

Choose this endpoint when you need AI-synthesized macro analysis of interest rates backed by authoritative FRED data, rather than raw rate feeds alone. It is especially valuable when you want both structured time-series data and an LLM-generated narrative interpretation in one call. Prefer this over generic financial data APIs when you want macro-level commentary, not just numbers.

## Known failure modes

- Missing or malformed 'start' date parameter returns a validation error
- Start date too far in the past may result in data unavailability from FRED
- LLM (MiMo) generation failure may return a success:false with an error message
- x402 payment failure (insufficient USDC, wrong network) blocks the request entirely
- Rate limits or Vercel cold-start timeouts may cause intermittent failures

## How this service works

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

## Output

A JSON object with a success boolean and a data object containing AI-generated macro analysis of interest rates, drawing on FRED time series data and interpreted by the MiMo LLM. The data field likely includes rate values over time, trend commentary, and possibly directional signals or summaries.

## Request schema (JSON Schema)

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

## 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-interest-rates-analysis-b0302988/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)
