# MacroLens Indicator Lookup API

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

Fetches AI-powered macro-economic analysis for a given FRED or World Bank data series, returning structured indicator data enriched by LLM insights

## Facts

- Endpoint: POST https://marcolens.vercel.app/api/indicator
- Price: $0.3/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/macrolens-indicator-lookup-api-c9a704b7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ZVFR3facBFjuGiuW54HNy

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

Example prompt: Pull the FRED series data for US unemployment rate (series ID: UNRATE) using MacroLens and give me the AI-powered macro analysis on it.

## When to prefer this

Choose this endpoint when you need both raw economic time series data AND AI-generated macro-economic interpretation in a single call, especially if you want FRED or World Bank data enriched with LLM commentary. Prefer this over plain FRED API calls when you want insights, not just raw numbers.

## Known failure modes

- Invalid or unknown series_id returns an error or empty data object
- Network timeout if FRED or World Bank upstream data source is unavailable
- Missing required series_id field causes request failure
- Payment failure if USDC balance on Base is insufficient for the $0.30 per-call fee

## 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 economic indicator time series and AI-generated macro-economic analysis for the requested FRED or World Bank series ID

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