# MacroLens Housing Market Analysis

> MacroLens Housing Market Analysis 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-14).

Analyzes housing market macro-economic data starting from a given date using FRED and World Bank data processed by an LLM

## Facts

- Endpoint: POST https://marcrons.vercel.app/api/housing
- 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-housing-market-analysis-9f1bde55
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_YJHcNiFVeUN5qe5qPKbyG

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-housing-market-analysis-9f1bde55 -d '<json body>'
```

Example prompt: Can you pull a MacroLens AI-powered housing market analysis starting from January 2020 and summarize what the major macro trends have been?

## When to prefer this

Choose this endpoint when you need AI-synthesized housing market macro analysis grounded in authoritative FRED and World Bank data, particularly when you want an interpretive narrative rather than raw data. Prefer it over generic economic data APIs when housing-specific LLM commentary is required.

## Known failure modes

- Missing required 'start' parameter returns validation error
- Invalid date format may cause processing failure
- FRED or World Bank upstream data unavailability could result in incomplete results
- Payment failure via x402 on Base will block the request
- Very early start dates may have limited data coverage

## How this service works

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

## Output

Returns a success flag and a data object containing AI-interpreted housing market indicators drawn from FRED and World Bank datasets, covering trends, statistics, and macro-economic context 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-housing-market-analysis-9f1bde55/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)
