# MacroLens Interest Rates API

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

Returns AI-powered macro-economic analysis of interest rate trends using FRED and World Bank data, processed by the MiMo LLM

## Facts

- Endpoint: POST https://marcroslencs.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-api-274f3be7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap__1D0Db255CZwHwHlt43GM

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-api-274f3be7 -d '<json body>'
```

Example prompt: Pull MacroLens interest rate analysis starting from January 2022 and give me an AI-interpreted summary of how rates have trended since then.

## When to prefer this

Choose this endpoint when you need AI-interpreted interest rate data grounded in authoritative FRED and World Bank sources, especially when you want natural-language macro analysis alongside raw time series — rather than just querying raw FRED data yourself or using a generic financial data API without LLM interpretation.

## Known failure modes

- Missing required 'start' parameter returns a validation error
- Invalid date format for 'start' field may cause parsing failure
- FRED or World Bank upstream data unavailability may result in partial or empty data response
- Payment failure via x402/Base may prevent endpoint access
- LLM inference timeout for MiMo could delay or truncate the AI analysis

## 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 flag and a data object containing interest rate time series and AI-generated macro-economic interpretation of rate trends, sourced from FRED and World Bank datasets and processed by the MiMo LLM.

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