# MacroLens Macro Intelligence Search API

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

Accepts a natural language macroeconomic query and returns AI-powered analysis synthesized from FRED and World Bank data using the MiMo LLM

## Facts

- Endpoint: POST https://marcolens.vercel.app/api/search
- Price: $0.35/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-search-api-84499d36
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_v6AoxyJ0Tya9azufsDpz5

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-search-api-84499d36 -d '<json body>'
```

Example prompt: Can you pull up a macro analysis on US inflation trends right now — specifically what FRED and World Bank data are showing, and what the MiMo model thinks about where things are headed?

## When to prefer this

Choose MacroLens when you need AI-synthesized macro-economic analysis grounded in authoritative data sources (FRED and World Bank) via a single natural language query. Prefer this over raw FRED/World Bank APIs when you want an interpreted, LLM-generated summary rather than raw time-series data. Best for agents that need actionable economic insights without building their own data pipeline.

## Known failure modes

- Query too vague or ambiguous — may return low-quality or generic analysis
- FRED or World Bank data unavailable for a specific indicator or time period — analysis may be incomplete
- LLM interpretation errors on highly technical or niche economic queries
- success: false returned when the query cannot be processed or data sources are unreachable
- Rate limiting or payment failure via x402 on Base blockchain

## 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 the AI-generated macroeconomic analysis, synthesized from FRED and World Bank datasets, including relevant indicator values, trends, and LLM-generated interpretation of the queried topic.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "query"
 ],
 "properties": {
  "query": {
   "type": "string",
   "description": "query"
  }
 }
}
```

## 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-search-api-84499d36/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from marcolens.vercel.app](https://www.zero.xyz/host/marcolens.vercel.app/llms.txt)
