# MacroLens Labor Market Analysis API

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

Returns AI-powered analysis of labor market macroeconomic indicators using FRED and World Bank data, starting from a specified date

## Facts

- Endpoint: POST https://marcrons.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-api-4affbd30
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_eMmAF_zhnaLmePz97gGKR

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-api-4affbd30 -d '<json body>'
```

Example prompt: Can you pull a MacroLens labor market analysis starting from January 2022 and give me an AI-powered summary of how employment trends have evolved?

## When to prefer this

Choose this endpoint when you need AI-interpreted labor market data (employment, unemployment, labor force participation) rather than raw data alone. It combines authoritative FRED and World Bank sources with LLM-generated narrative analysis in a single call, making it ideal for research, reporting, or agent workflows that need both data and interpretation without post-processing. Prefer over generic economic APIs when you specifically need labor-focused macro indicators with built-in AI commentary.

## Known failure modes

- Missing required 'start' parameter returns validation error
- Invalid date format for 'start' may cause parsing failure or empty results
- FRED or World Bank data unavailable for requested time range returns empty data
- Payment not completed via x402/Base results in 402 Payment Required response
- Start date too recent may return sparse or incomplete data

## 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 labor market macroeconomic indicators sourced from FRED and World Bank, enriched with AI-generated narrative analysis and trend interpretation from the MiMo LLM, covering the period 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-api-4affbd30/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from marcrons.vercel.app](https://www.zero.xyz/host/marcrons.vercel.app/llms.txt)
