# MacroLens Industrial Activity Analysis

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

Analyzes industrial sector macro-economic data using FRED and World Bank datasets, synthesized by an AI LLM for actionable insights.

## Facts

- Endpoint: POST https://marcolens.vercel.app/api/industrial
- 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-industrial-activity-analysis-119fca4d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_XQjYiXs-wQFWhBXt9oepd

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-industrial-activity-analysis-119fca4d -d '<json body>'
```

Example prompt: Pull the MacroLens industrial activity analysis starting from January 2022 and give me an AI-synthesized summary of what the data shows about industrial sector trends.

## When to prefer this

Choose this endpoint when you need AI-interpreted industrial sector macro-economic analysis rather than raw data, specifically combining FRED and World Bank industrial indicators with LLM synthesis. Prefer it over generic data feeds when you want narrative insight alongside metrics, or when operating in a crypto-native payment environment using x402 on Base.

## Known failure modes

- Missing required 'start' field returns validation error
- Invalid date format in 'start' field causes parse failure
- Payment not fulfilled via x402 on Base results in 402 Payment Required
- Upstream FRED or World Bank data unavailable causes partial or failed response
- Start date too far in the past may exceed available historical data range

## 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 AI-synthesized industrial sector macro-economic analysis, drawing on FRED and World Bank industrial indicators from the specified start date onward, including trend interpretations generated 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-industrial-activity-analysis-119fca4d/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)
