# KRW Macro Stress Score

> KRW Macro Stress Score is a paid API for AI agents from api.printmoneylab.com, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-14).

Returns a 0-100 composite macro stress score for the Korean Won, combining US 3Y treasury, VIX, foreign ownership proxy, USD/KRW momentum, and Korean semiconductor equity into a rolling 120-day percentile signal with regime classification and per-component breakdown.

## Facts

- Endpoint: GET https://api.printmoneylab.com/api/v1/krw-macro-stress
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/krw-macro-stress-score-305f08a0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_I0htrEfbe7rkpjwo7ppM4

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 krw-macro-stress-score-305f08a0
```

Example prompt: What's the current KRW macro stress score and which components — VIX, US treasuries, foreign ownership, or semiconductor equities — are driving it most right now?

## When to prefer this

Choose this endpoint when you need a single, normalized macro stress signal for KRW with regime context rather than raw price data — especially useful for risk gating in trading bots, macro dashboards, or any workflow that needs a quick-to-interpret 0-100 stress score with factor attribution. Prefer this over raw FX rate endpoints when you need directional regime classification, not just spot pricing.

## Known failure modes

- Payment not provided or invalid x402 header — returns 402 Payment Required
- Upstream market data unavailable — may return stale or error response
- Rate limiting if called too frequently without proper payment
- Network timeout if called during market data refresh window

## How this service works

KRW Macro Stress Score (0-100) — combined signal from US 3Y treasury, VIX, foreign ownership proxy (SK Hynix + Samsung, mcap-weighted), USD/KRW momentum, and Korean semiconductor equity. Rolling 120d percentile over 2yr backfill. Regime + direction + per-component breakdown. Positioning: KRW macro stress, not kimchi-premium prediction.

## Output

A JSON object containing a composite KRW macro stress score from 0 to 100 (rolling 120-day percentile over a 2-year backfill), a regime label (e.g. stressed/neutral/calm), a directional signal, and a per-component breakdown covering US 3Y treasury, VIX, foreign ownership proxy (SK Hynix + Samsung mcap-weighted), USD/KRW momentum, and Korean semiconductor equity.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/krw-macro-stress-score-305f08a0/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.printmoneylab.com](https://www.zero.xyz/host/api.printmoneylab.com/llms.txt)
