# Korean Exchange Alerts Feed

> Korean Exchange Alerts Feed is a paid API for AI agents from api.printmoneylab.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-13).

Returns real-time caution flags, investment warnings, new listings, and delistings for tokens on Korean crypto exchanges (Upbit, Bithumb)

## Facts

- Endpoint: GET https://api.printmoneylab.com/api/v1/exchange-alerts
- Price: $0.01/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-5e15c137
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_U6V5ldskTMZsdVLZ7agNV

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

Example prompt: What tokens are currently flagged with investment warnings or caution notices on Korean crypto exchanges like Upbit and Bithumb — any volume spikes, deposit surges, or delisting alerts I should know about?

## When to prefer this

Use this endpoint when you need real-time regulatory and trading alerts specifically from Korean exchanges (Upbit, Bithumb), particularly for monitoring investment warnings, caution flags, volume anomalies, or deposit surges. Prefer over general crypto data APIs when Korean market compliance signals or kimchi-premium-related risk flags are relevant.

## Known failure modes

- Payment required (402) if x402 micropayment header is missing or invalid
- Stale data if upstream Korean exchange feed is delayed beyond 60s update interval
- Empty caution_tokens array if no tokens are currently flagged
- Rate limiting if too many requests are made in succession

## How this service works

Korean exchange alerts: new listings, delistings, investment warnings, caution flags

## Output

A JSON object containing a list of caution tokens, each with its ticker symbol, Korean name, and an array of active flags such as VOLUME_SOARING, DEPOSIT_SOARING, INVESTMENT_WARNING, GLOBAL_PRICE_DIFF. Also includes metadata like last update timestamp and update interval (60s).

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {}
 },
 "output": {
  "type": "application/json"
 }
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "properties": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "meta": {
   "price": "$0.01",
   "update_interval": "60s"
  },
  "caution_tokens": [
   {
    "flags": [
     "INVESTMENT_WARNING",
     "VOLUME_SOARING"
    ],
    "symbol": "RISK",
    "korean_name": "위험종목"
   }
  ],
  "listing_changes": [
   {
    "type": "NEW_LISTING",
    "symbol": "NEWTOKEN",
    "detected_at": "2026-04-23T12:00:00Z",
    "korean_name": "뉴토큰"
   }
  ]
 }
}
```

## More

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