# Kimchi Premium Live Rate — Single Token (Upbit vs Binance)

> Kimchi Premium Live Rate — Single Token (Upbit vs Binance) is a paid API for AI agents from api.printmoneylab.com, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-14).

Returns the real-time Kimchi Premium for a single crypto token by comparing its Upbit (Korean) price to its Binance (global) price, adjusted via the live USD/KRW FX rate.

## Facts

- Endpoint: GET https://api.printmoneylab.com/api/v1/kimchi-premium
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-printmoneylab-com-bf653915
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_wB6n4tITQ0uJVcW-bfhJN

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-bf653915
```

Example prompt: What's the current kimchi premium for ETH — how much more expensive is it on Upbit compared to Binance right now?

## When to prefer this

Use this endpoint when you need a fast, single-token kimchi premium calculation without the overhead of the full 189+ token bulk endpoint. Ideal for real-time arbitrage monitoring, alerting on a specific coin, or when only one token's Korea-vs-global price gap is needed.

## Known failure modes

- Missing required 'symbol' query parameter — returns validation error
- Symbol not listed on Upbit or Binance — returns not found or null premium
- FX rate service unavailable — may return error or stale data
- Rate limiting or payment failure (x402) — returns 402 Payment Required

## How this service works

Real-time Kimchi Premium for a single token (Upbit vs Binance via FX rate)

## Output

Returns the real-time kimchi premium percentage for the requested token, derived from the token's KRW price on Upbit versus its USD price on Binance, adjusted by the live USD/KRW FX rate. Likely includes the raw Upbit KRW price, Binance USD price, the FX rate used, and the resulting premium or discount percentage.

## Example request

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

## 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 (e.g., BTC, ETH, XRP)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "symbol": "BTC",
  "fx_rate": 1475.27,
  "fx_source": "exchangerate-api.com",
  "timestamp": 1776340000000,
  "upbit_krw": 142000000,
  "binance_usdt": 95200.5,
  "usdt_krw_rate": 1480.5,
  "premium_percent": 1.1,
  "fx_rate_official": 1475.27,
  "premium_pct_usdt": 0.78,
  "premium_direction": "positive",
  "binance_krw_equivalent": 140453370
 }
}
```

## More

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