# MacroLens Macro Intelligence API — Country Analysis

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

Runs AI-powered macroeconomic analysis on a given country using FRED and World Bank data processed through the MiMo LLM

## Facts

- Endpoint: POST https://marcrons.vercel.app/api/analyze
- Price: $0.35/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/macrolens-macro-intelligence-api-country-analysis-0e3ef752
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_jJpyvJfyL04D_1amfnsDz

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-country-analysis-0e3ef752 -d '<json body>'
```

Example prompt: Can you pull a MacroLens AI macro analysis for Germany — I want an overview of its current economic conditions using FRED and World Bank data?

## When to prefer this

Choose this endpoint when you need a synthesized, AI-interpreted macroeconomic country briefing that combines authoritative datasets (FRED, World Bank) with LLM reasoning — especially when you want narrative insights rather than raw data tables. Prefer this over raw data APIs when the goal is a ready-to-use economic summary rather than pulling specific indicator time series.

## Known failure modes

- Missing or unrecognized country name returns an error or empty data
- Country with insufficient FRED/World Bank coverage may return incomplete analysis
- LLM inference failure may cause delayed or null data response
- Network timeout on the Vercel deployment during heavy load
- Payment authorization failure via x402/Base may block the request

## 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 boolean success field and a data object containing AI-generated macroeconomic analysis for the specified country, synthesized from FRED and World Bank datasets using the MiMo LLM. The data likely includes indicators such as GDP, inflation, trade balance, and qualitative economic interpretation.

## Request schema (JSON Schema)

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

## 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-country-analysis-0e3ef752/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)
