# MacroLens Labor Market Analysis

> MacroLens Labor Market Analysis is a paid API for AI agents from marcroslencs.vercel.app, paid per call via x402, $0.4/call, status unknown (last checked 2026-09-15).

Provides AI-powered analysis of labor market macroeconomic data using FRED and World Bank datasets, synthesized by the MiMo LLM

## Facts

- Endpoint: POST https://marcroslencs.vercel.app/api/labor
- Price: $0.4/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/macrolens-labor-market-analysis-449888f9
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Jm3al7lUOzltNP7de6u3s

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-labor-market-analysis-449888f9 -d '<json body>'
```

Example prompt: Can you pull a MacroLens AI analysis of the labor market starting from January 2020 and tell me what the key trends look like in unemployment and workforce participation?

## When to prefer this

Choose this endpoint when you need AI-synthesized narrative labor market analysis combining FRED and World Bank data from a specific start date — particularly useful for macro research, investment analysis, or policy work where you want both raw economic indicators and LLM-interpreted insights in one call. Prefer over raw FRED API calls when you want the analysis pre-interpreted by an LLM rather than raw time-series data.

## Known failure modes

- Missing or invalid 'start' date parameter returns an error or empty result
- Malformed date string causes parsing failure
- FRED or World Bank data unavailable for the requested date range
- MiMo LLM synthesis timeout or failure results in partial data response
- Payment not processed (x402 protocol) blocks endpoint access
- Requested date range too far in the past with no available data

## 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 labor market analysis derived from FRED and World Bank economic datasets, including metrics such as unemployment rates, labor force participation, and LLM-generated narrative interpretation of trends from the specified start date.

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