get_crypto_price
Retrieve current KRW prices for cryptocurrencies from Bithumb exchange to analyze price differences between Korean and international markets.
Instructions
Bithumb에서 특정 암호화폐의 KRW 가격을 조회합니다.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| symbol | No | 암호화폐 심볼 (예: BTC, ETH, USDT) | BTC |
Input Schema (JSON Schema)
{
"properties": {
"symbol": {
"default": "BTC",
"description": "암호화폐 심볼 (예: BTC, ETH, USDT)",
"type": "string"
}
},
"required": [],
"type": "object"
}