# MacroLens Series Data Lookup

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

Retrieves macro-economic time series data from FRED and World Bank databases for a given series ID

## Facts

- Endpoint: POST https://mascronlens.vercel.app/api/series
- Price: $0.35/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/macrolens-series-data-lookup-5c41b622
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_RS1TaUY7RrTcYSEfJOJHR

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-series-data-lookup-5c41b622 -d '<json body>'
```

Example prompt: Can you pull the MacroLens series data for FRED series ID 'UNRATE' so I can see the historical US unemployment rate time series?

## When to prefer this

Use this endpoint when you need raw time series data for a specific known FRED or World Bank series ID. Ideal for agents that already know the series identifier (e.g. 'UNRATE', 'GDP', 'CPIAUCSL') and need to retrieve its historical data programmatically with micro-payment via x402 on Base.

## Known failure modes

- Invalid or unknown series_id returns an error or empty data
- Series ID not found in FRED or World Bank datasets
- Payment failure via x402/Base blockchain returns 402 response
- Network timeout from upstream FRED or World Bank APIs
- Malformed request body missing required series_id field

## 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 boolean and a data object containing the time series data for the requested economic series from FRED or World Bank sources.

## 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-series-data-lookup-5c41b622/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)
