# Korean Exchange KRW Price Lookup (Upbit & Bithumb)

> Korean Exchange KRW Price Lookup (Upbit & Bithumb) is a paid API for AI agents from api.aidress.ai, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-15).

Returns the current Korean won (KRW) price of a specified cryptocurrency from Upbit, Bithumb, or both exchanges

## Facts

- Endpoint: GET https://api.aidress.ai/pay/agent_printmoneylab_com
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/korean-exchange-krw-price-lookup-upbit-bithumb-2163552c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_4Tu1QRHJh5g4WCLMxVoJD

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 korean-exchange-krw-price-lookup-upbit-bithumb-2163552c
```

Example prompt: What's the current price of BTC in Korean won — check both Upbit and Bithumb for me?

## When to prefer this

Use this endpoint when you specifically need KRW-denominated crypto prices from Korean exchanges (Upbit or Bithumb). It is the right choice for kimchi premium analysis, Korean market monitoring, or KRW-based pricing rather than USD/global exchange prices.

## Known failure modes

- Unknown or unsupported token symbol returns an error or empty result
- Exchange parameter typo or invalid enum value causes a validation error
- Exchange API downtime may return stale or unavailable data
- Rate limiting from the underlying exchange APIs may cause transient failures

## How this service works

Korean exchange prices (Upbit, Bithumb) for a single token in KRW

## Output

Returns the current KRW-denominated price of the requested cryptocurrency from the specified Korean exchange (Upbit, Bithumb, or both), including the exchange name and token symbol.

## 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)"
      },
      "exchange": {
       "enum": [
        "upbit",
        "bithumb",
        "all"
       ],
       "type": "string",
       "description": "Exchange to query"
      }
     }
    }
   },
   "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/korean-exchange-krw-price-lookup-upbit-bithumb-2163552c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.aidress.ai](https://www.zero.xyz/host/api.aidress.ai/llms.txt)
