# PrintMoneyLab Global vs Korea Divergence (Light)

> PrintMoneyLab Global vs Korea Divergence (Light) 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-15).

Returns CoinGecko global price vs Korean exchange price for a crypto token, with a 1-2 sentence AI summary of the divergence

## Facts

- Endpoint: GET https://api.printmoneylab.com/api/v1/global-vs-korea-divergence
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-printmoneylab-com-f25e54d8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ZbbDKMSV4on8apQ4PLz0w

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 api-printmoneylab-com-f25e54d8
```

Example prompt: What's the current price divergence between Korean exchanges and global markets for BTC — give me the Kimchi premium and a quick AI summary of what's going on?

## When to prefer this

Use this endpoint when you need a quick, lightweight snapshot of the Kimchi premium (Korean vs global crypto price divergence) for a single token with a brief AI summary. Prefer this over the deep tier (/api/v1/global-vs-korea-divergence-deep) when you don't need Korean news signals or a structured multi-section AI breakdown and want to save cost ($0.05 vs $0.10).

## Known failure modes

- Unsupported symbol returns error — only specific symbols like BTC, ETH, SOL, XRP etc. are supported
- Exchange data unavailable if Korean exchange API is down or rate-limited
- Payment failure (402) if USDC payment of $0.05 is not included or invalid
- Stale data possible if cache is not refreshed in time

## How this service works

Global vs Korea divergence (light tier) — CoinGecko global price + Korean exchange + 1-2 sentence AI summary. For deeper analysis with Korean news signals and structured AI breakdown, use /api/v1/global-vs-korea-divergence-deep ($0.10).

## Output

Returns the global CoinGecko price for the specified token, the current Korean exchange price, the calculated divergence/premium percentage, and a 1-2 sentence AI-generated summary interpreting the divergence signal.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "symbol": "BTC"
  }
 },
 "output": {
  "type": "json"
 }
}
```

## 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",
     "required": [
      "symbol"
     ],
     "properties": {
      "symbol": {
       "type": "string",
       "description": "Crypto symbol (BTC, ETH, XRP, SOL, ADA, DOGE, DOT, MATIC, LINK, AVAX, ATOM, UNI, LTC, NEAR, OP, ARB, APT, ALGO, FTM, SUI, TRX, BCH, ETC, HBAR, SHIB)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "depth": "light",
  "prices": {
   "fx_rate": 1481.45,
   "fx_source": "exchangerate-api.com",
   "korea_krw": 142000000,
   "global_usd": 95200.5,
   "korea_source": "Upbit",
   "global_source": "CoinGecko"
  },
  "symbol": "BTC",
  "timestamp": 1777040000000,
  "divergence": {
   "direction": "positive",
   "magnitude": "small",
   "premium_pct": 0.68,
   "korea_implied_usd": 95850
  },
  "korean_name": "비트코인",
  "context_signals": {
   "volume_spike_24h": false,
   "investment_warning": false,
   "global_volume_change_pct": 12.3
  },
  "data_age_seconds": 0,
  "ai_interpretation": "Korean market shows a small positive premium of 0.68% over global pricing with no active investment warning, suggesting modest local demand without overheating signals."
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/api-printmoneylab-com-f25e54d8/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)
