# PrintMoneyLab Global vs Korea Divergence Deep Analysis

> PrintMoneyLab Global vs Korea Divergence Deep Analysis is a paid API for AI agents from api.printmoneylab.com, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-13).

Returns deep-tier global-vs-Korea price divergence for a crypto token, including Korean news signals from Coinness Telegram and structured AI analysis with drivers, global context, action suggestion, and confidence score.

## Facts

- Endpoint: GET https://api.printmoneylab.com/api/v1/global-vs-korea-divergence-deep
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-printmoneylab-com-5e23899e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_7j8-r9A6ABqsmw4m5LLRy

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-5e23899e
```

Example prompt: Give me the deep global vs Korea price divergence analysis for BTC, including the latest Coinness Telegram news signals, AI-identified drivers, action suggestion, and confidence score.

## When to prefer this

Choose this endpoint over the light-tier /api/v1/global-vs-korea-divergence when you need structured AI analysis with drivers, global context, action suggestions, and confidence scores, plus Korean Coinness Telegram news signals. It costs $0.10 vs $0.05 but provides significantly richer intelligence for trading or research decisions requiring explanation and context beyond a 1-2 sentence summary.

## Known failure modes

- Unsupported symbol returns validation error — only specific symbols from the enum list are accepted
- Missing required 'symbol' query parameter returns 400 bad request
- Stale or unavailable Korean exchange data may affect divergence accuracy
- Coinness Telegram feed unavailable may reduce news signal quality
- Payment failure (x402) returns 402 with payment details required before data is served

## How this service works

Global vs Korea divergence (deep tier) — light response + Korean news signals (Coinness Telegram, 24h window) + structured AI analysis (drivers, global context, action suggestion, confidence). For lighter/cheaper analysis, use /api/v1/global-vs-korea-divergence ($0.05).

## Output

Returns a light response containing: current global vs Korean exchange price divergence data, Korean crypto news signals sourced from Coinness Telegram (24h window), and structured AI analysis including identified divergence drivers, global market context, an action suggestion, and a confidence score.

## Example request

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

## 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": "deep",
  "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
  },
  "ai_deep_analysis": {
   "summary": "BTC shows a modest positive Korea premium with steady but not elevated market attention.",
   "confidence": "medium",
   "global_context": "BTC tracking global trends without significant divergence.",
   "korean_market_drivers": [
    "Dollar strength considerations",
    "Futures market activity",
    "Stable positive sentiment"
   ],
   "implied_action_suggestion": "Premium is modest; insufficient signal alone for directional bias."
  },
  "data_age_seconds": 0,
  "recent_news_signal": {
   "source": "Coinness Telegram",
   "top_keywords": [
    "BTC",
    "달러",
    "선물"
   ],
   "sentiment_score": 0.6,
   "korean_news_count_24h": 4
  }
 }
}
```

## More

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