# MacroLens Macro Intelligence API — Money Endpoint

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

Performs AI-powered macro-economic analysis on monetary data using FRED and World Bank datasets combined with MiMo LLM reasoning

## Facts

- Endpoint: POST https://mascronlens.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-640d1de8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_iuhp-FlW1Im2pdq4gm70P

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-640d1de8 -d '<json body>'
```

Example prompt: Give me an AI-powered macro-economic analysis of money supply and monetary conditions starting from January 2020, pulling from FRED and World Bank data.

## When to prefer this

Choose this endpoint when you need AI-synthesized macro-economic analysis combining FRED and World Bank monetary data with LLM-generated interpretation, especially when you want a single call that both retrieves authoritative economic data and produces a narrative analysis starting from a specific date. Prefer this over raw FRED or World Bank APIs when you want human-readable insights rather than raw time series data.

## Known failure modes

- Missing required 'start' parameter returns validation error
- Invalid date format for 'start' may cause data lookup failure
- FRED or World Bank data unavailable for the specified time range
- LLM inference timeout for complex queries
- Payment failure via x402 on Base returns 402 response
- success: false returned with empty or null data object

## 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 and insights about monetary conditions, synthesized from FRED and World Bank datasets using the MiMo LLM.

## 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-640d1de8/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)
