# MacroLens Macro Intelligence API — Consumer Endpoint

> MacroLens Macro Intelligence API — Consumer Endpoint is a paid API for AI agents from marcroslencs.vercel.app, paid per call via x402, $0.4/call, status unknown (last checked 2026-09-14).

Delivers AI-powered macro-economic analysis by querying FRED and World Bank datasets through the MiMo LLM, returning structured economic insights starting from a specified date.

## Facts

- Endpoint: POST https://marcroslencs.vercel.app/api/consumer
- 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-consumer-endpoint-2b0ef7f2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_1Iqy8WceA29QkLpsgfsOB

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-consumer-endpoint-2b0ef7f2 -d '<json body>'
```

Example prompt: Run a MacroLens macro-economic analysis starting from January 1, 2023 — I want an AI-generated summary of key economic indicators and trends from FRED and World Bank data since then.

## When to prefer this

Choose this endpoint when you need AI-synthesized macro-economic analysis grounded in authoritative FRED and World Bank datasets, especially when you want an LLM-interpreted summary rather than raw data retrieval. Prefer this over generic data APIs when the goal is narrative economic intelligence starting from a specific historical or recent date, priced per-call via USDC on Base.

## Known failure modes

- Missing required 'start' field returns validation error
- Invalid date format for 'start' may cause parsing failure or empty data
- FRED or World Bank upstream data unavailability could result in partial or empty 'data' object
- Payment failure via x402/Base may block the request entirely
- Ambiguous start date ranges may produce incomplete or low-confidence LLM outputs

## 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 derived from FRED and World Bank datasets, synthesized by the MiMo LLM from the specified start date onward.

## 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-consumer-endpoint-2b0ef7f2/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from marcroslencs.vercel.app](https://www.zero.xyz/host/marcroslencs.vercel.app/llms.txt)
