# MacroLens Interest Rates Analysis

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

Retrieves and analyzes interest rate data using FRED data sources combined with AI-powered macro-economic interpretation via MiMo LLM

## Facts

- Endpoint: POST https://mascronlens.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-319f5f44
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_1Z5KH44wjaF-SuvzLonLp

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

Example prompt: Can you pull up an AI-powered analysis of interest rate trends starting from January 2022 using MacroLens — I want to understand how rates have moved and what the macro picture looks like?

## When to prefer this

Choose this endpoint when you need both raw interest rate data and AI-generated macro-economic interpretation in a single call, particularly when analyzing Federal Reserve policy trends, comparing historical rate cycles, or building reports that combine quantitative FRED data with qualitative LLM-driven insights. Prefer over raw FRED API access when narrative context or synthesis is needed alongside the numbers.

## Known failure modes

- Missing or invalid 'start' date string returns an error or empty dataset
- Malformed date format causes request failure
- FRED data unavailable for the requested range returns partial or empty data
- Payment not provided or insufficient results in HTTP 402 rejection
- LLM analysis timeout may cause delayed or truncated AI commentary

## 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 flag and a data object containing interest rate time-series values sourced from FRED, enriched with AI-generated macro-economic interpretation and trend analysis from the MiMo LLM covering the requested period.

## 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-319f5f44/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from mascronlens.vercel.app](https://www.zero.xyz/host/mascronlens.vercel.app/llms.txt)
