# MacroLens Series Data Endpoint

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

Fetches raw or AI-enriched macroeconomic time-series data by FRED series ID, powered by FRED and World Bank data sources

## Facts

- Endpoint: POST https://marcolens.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-endpoint-ce5b62ab
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_bJ2IV5ByQ0VwDb4WO-pCa

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

Example prompt: Pull the FRED series data for UNRATE — I want to see the US unemployment rate time series from MacroLens.

## When to prefer this

Choose this endpoint when you need structured macroeconomic time-series data identified by a known FRED series ID, especially when you want AI-enriched economic analysis layered on top of raw FRED and World Bank data, and are comfortable paying per-call via x402 on Base.

## Known failure modes

- Invalid or non-existent series_id returns an error or success:false
- Missing required series_id field causes a validation error
- Payment failure via x402 protocol blocks access
- FRED or World Bank upstream data source unavailable causes timeout or error
- Rate limiting or quota exhaustion on the paid API

## 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 macroeconomic time-series values and metadata for the requested FRED 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-series-data-endpoint-ce5b62ab/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)
