# MacroLens Labor Market Analysis

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

Returns AI-powered macro-economic analysis of labor market indicators using FRED and World Bank data processed through a MiMo LLM

## Facts

- Endpoint: POST https://mascronlens.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-503fca14
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_tg7bWvwBNSsRx2teyokLY

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

Example prompt: Give me an AI-powered labor market analysis starting from January 2020, pulling from FRED and World Bank data — I want to understand employment trends and key macro indicators over that period.

## When to prefer this

Use this endpoint when you need AI-synthesized labor market analysis combining FRED and World Bank data from a specific start date, rather than raw data pulls or single-source lookups. Best for agents needing interpreted macro labor trends rather than just raw time-series values.

## Known failure modes

- Missing required 'start' field returns validation error
- Invalid date format for 'start' causes parsing failure
- FRED or World Bank upstream data unavailable causes partial or failed response
- Payment not included or insufficient USDC causes 402 Payment Required
- MiMo LLM timeout on complex queries may result in delayed or empty data object

## How this service works

AI-powered macro-economic analysis. FRED + World Bank data + MiMo LLM. 20 endpoints. x402 on Base.

## Output

A JSON object with a success boolean and a data object containing AI-interpreted labor market indicators and macroeconomic analysis derived from FRED and World Bank datasets for the specified time period

## 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-503fca14/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)
