# MacroLens Indicator Lookup API

> MacroLens Indicator Lookup API is a paid API for AI agents from marcrons.vercel.app, paid per call via x402, $0.3/call, status unknown (last checked 2026-09-13).

Fetches AI-analyzed macro-economic indicator data for a given FRED or World Bank series ID

## Facts

- Endpoint: POST https://marcrons.vercel.app/api/indicator
- Price: $0.3/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/macrolens-indicator-lookup-api-7d08bdf2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_vqCtA5oQoz1S-6R-wj9k3

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-indicator-lookup-api-7d08bdf2 -d '<json body>'
```

Example prompt: Pull the MacroLens analysis for FRED series CPIAUCSL — I want to see the latest consumer price index data with AI interpretation.

## When to prefer this

Choose this endpoint when you need structured macro-economic indicator data combined with AI-generated interpretation for a specific FRED or World Bank series ID. It is especially useful when you want both raw time-series data and LLM-powered analysis in a single call, rather than querying FRED or World Bank directly and interpreting the data yourself. Prefer this over raw FRED API access when AI narrative context is needed alongside the numbers.

## Known failure modes

- Invalid or unknown series_id returns success: false with no data
- Missing required series_id field causes request validation error
- Network or upstream FRED/World Bank API unavailability causes failure
- Payment not completed (x402) results in 402 Payment Required response
- Rate limiting or quota exceeded on the underlying data sources

## 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 the time series and/or AI-generated analysis for the requested economic indicator series, sourced from FRED or World Bank datasets and interpreted by the MiMo LLM.

## Request schema (JSON Schema)

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

## 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-indicator-lookup-api-7d08bdf2/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)
