# stat.halowerk.com Country Macroeconomic Profile

> stat.halowerk.com Country Macroeconomic Profile is a paid API for AI agents from stat.halowerk.com, paid per call via x402, $0.006/call, status unknown (last checked 2026-09-13).

Assembles a multi-indicator macroeconomic profile for a country from World Bank data, explicitly labeling each indicator with its own reference year to avoid false temporal coherence.

## Facts

- Endpoint: POST https://stat.halowerk.com/v1/country-macro
- Price: $0.006/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/stat-halowerk-com-country-macroeconomic-profile-7fc099fb
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_cf18AAR2Bc7TkrzUG8Mnz

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 stat-halowerk-com-country-macroeconomic-profile-7fc099fb -d '<json body>'
```

Example prompt: Pull together a full macroeconomic profile for Brazil — GDP growth, labour force figures, and the other key World Bank indicators — and make sure each indicator shows the actual year it refers to, not just a single blended snapshot date.

## When to prefer this

Choose this endpoint when you need a transparent, temporally honest macroeconomic country profile that explicitly tags each indicator with its own vintage year — ideal for research, investment memos, or risk reports where silently blending data from different years would be misleading. Prefer it over generic data aggregators when the provenance and recency of each individual World Bank indicator matters to the consumer of the output.

## Known failure modes

- Unknown or invalid country code returns an error
- World Bank source data unavailable for a specific indicator returns partial profile or null for that field
- Network timeout if World Bank upstream is slow
- Payment failure via x402 protocol blocks the request

## How this service works

Assembles a macroeconomic profile of a country from World Bank indicators, and refuses to present it as a snapshot of one year. Official statistics arrive on different schedules: real GDP growth may be current to last year while a labour force figure lags by three, and a profile that omits this silently blends half a decade into what looks like a single reading.

## Output

A structured macroeconomic profile of the requested country, containing key World Bank indicators (such as real GDP growth, labour force participation, and others) each annotated with its own specific reference year, making the temporal provenance of each data point explicit rather than presenting a misleadingly uniform snapshot date.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "years": {
   "type": "integer",
   "default": 12,
   "maximum": 40,
   "minimum": 3
  },
  "country": {
   "type": "string",
   "maxLength": 3,
   "minLength": 2,
   "description": "ISO country code, e.g. DE or DEU."
  },
  "indicators": {
   "type": "array",
   "items": {
    "enum": [
     "gdp_growth_pct",
     "gdp_per_capita_usd",
     "inflation_pct",
     "population",
     "population_growth_pct",
     "unemployment_pct",
     "exports_pct_gdp",
     "imports_pct_gdp",
     "gov_debt_pct_gdp",
     "current_account_pct_gdp"
    ],
    "type": "string"
   },
   "maxItems": 10,
   "description": "Which indicators. All by default."
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/stat-halowerk-com-country-macroeconomic-profile-7fc099fb/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from stat.halowerk.com](https://www.zero.xyz/host/stat.halowerk.com/llms.txt)
