# MacroLens Macro Intelligence API — Money Endpoint

> MacroLens Macro Intelligence API — Money Endpoint 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).

Provides AI-powered macro-economic analysis of monetary conditions using FRED and World Bank data processed through the MiMo LLM, starting from a specified date

## Facts

- Endpoint: POST https://marcrons.vercel.app/api/money
- 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-macro-intelligence-api-money-endpoint-d9efd801
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_hhRGv_VCigO8ivfoA89Fo

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-macro-intelligence-api-money-endpoint-d9efd801 -d '<json body>'
```

Example prompt: Use MacroLens to give me an AI-powered macro-economic analysis of monetary conditions starting from January 1, 2023 — pulling from FRED and World Bank data.

## When to prefer this

Choose this endpoint when you need AI-synthesized macro-economic analysis of monetary conditions grounded in authoritative FRED and World Bank datasets, especially when you want an LLM-generated narrative interpretation rather than raw time-series data. Prefer this over generic economic data APIs when you need analysis starting from a specific historical date with AI commentary baked in.

## Known failure modes

- Missing 'start' field returns validation error
- Invalid date format in 'start' causes failure
- FRED or World Bank data unavailable for the requested period returns partial or empty data
- Payment not completed via x402/Base results in 402 response
- MiMo LLM timeout on complex analysis returns error or partial response

## 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-generated macro-economic analysis of monetary conditions, synthesizing FRED and World Bank time-series data through the MiMo LLM from the specified start date forward.

## 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-macro-intelligence-api-money-endpoint-d9efd801/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)
