# Send Upbit to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "upbit",
    "name": "Upbit",
    "source": "tencent",
    "type": "skill",
    "category": "数据分析",
    "sourceUrl": "https://clawhub.ai/lkjsays/upbit",
    "canonicalUrl": "https://clawhub.ai/lkjsays/upbit",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/upbit",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=upbit",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "upbit",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T10:52:38.025Z",
      "expiresAt": "2026-05-07T10:52:38.025Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=upbit",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=upbit",
        "contentDisposition": "attachment; filename=\"upbit-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "upbit"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/upbit"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/upbit",
    "downloadUrl": "https://openagent3.xyz/downloads/upbit",
    "agentUrl": "https://openagent3.xyz/skills/upbit/agent",
    "manifestUrl": "https://openagent3.xyz/skills/upbit/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/upbit/agent.md"
  }
}
```
## Documentation

### Overview

Query real-time cryptocurrency prices from Upbit, South Korea's largest cryptocurrency exchange. Provides KRW-based pricing with 24h statistics, trading volume, and 52-week highs/lows.

### Quick Start

Fetch ticker data using Upbit's public API:

curl -s "https://api.upbit.com/v1/ticker?markets=KRW-BTC"

Replace KRW-BTC with the desired market code (e.g., KRW-ETH, KRW-SUI, KRW-DOGE).

### Market Code Format

Upbit uses KRW-{SYMBOL} format:

Bitcoin: KRW-BTC
Ethereum: KRW-ETH
Sui: KRW-SUI
Dogecoin: KRW-DOGE

Important: Always use uppercase for the symbol.

### Response Format

The API returns JSON with these key fields:

{
  "market": "KRW-BTC",
  "trade_price": 145000000.0,
  "opening_price": 144000000.0,
  "high_price": 146000000.0,
  "low_price": 143000000.0,
  "prev_closing_price": 144000000.0,
  "change": "RISE",
  "change_price": 1000000.0,
  "change_rate": 0.00694444,
  "signed_change_price": 1000000.0,
  "signed_change_rate": 0.00694444,
  "acc_trade_volume_24h": 123.456,
  "acc_trade_price_24h": 17890000000.0,
  "highest_52_week_price": 150000000.0,
  "highest_52_week_date": "2025-12-01",
  "lowest_52_week_price": 100000000.0,
  "lowest_52_week_date": "2025-02-01",
  "trade_date_kst": "20260209",
  "trade_time_kst": "074511"
}

### Key Fields

trade_price: Current price (KRW)
change: Price direction (RISE, FALL, EVEN)
change_price: Absolute change from previous close (KRW)
change_rate: Percentage change (0.00694444 = 0.69%)
signed_change_price: Signed price change (negative for falls)
signed_change_rate: Signed percentage change
acc_trade_volume_24h: 24-hour trading volume (coins)
acc_trade_price_24h: 24-hour trading value (KRW)
highest_52_week_price / lowest_52_week_price: 52-week price range
trade_date_kst / trade_time_kst: Last trade timestamp (Korea time)

### Formatting Output

Present prices in a readable format with:

Current price with change indicator (▲/▼)
Percentage change from previous close
Day range (high/low)
24h volume in both coins and KRW
52-week range for context

Example output:

**BTC/KRW (2026-02-09 07:45:11 기준)**

- **현재가:** 145,000,000원
- **전일대비:** +1,000,000원 (+0.69%) ▲
- **시가:** 144,000,000원
- **고가:** 146,000,000원
- **저가:** 143,000,000원
- **24시간 거래량:** 123.46 BTC
- **24시간 거래대금:** 약 178억원

**52주 기록**
- 최고: 150,000,000원 (2025-12-01)
- 최저: 100,000,000원 (2025-02-01)

### Multiple Markets

Query multiple markets at once:

curl -s "https://api.upbit.com/v1/ticker?markets=KRW-BTC,KRW-ETH,KRW-SUI"

Returns an array of ticker objects.

### Error Handling

If the market code is invalid or not listed on Upbit, the API returns an empty array []. In this case, inform the user that the coin is not available on Upbit or verify the market code.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: lkjsays
- Version: 1.0.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-04-30T10:52:38.025Z
- Expires at: 2026-05-07T10:52:38.025Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/upbit)
- [Send to Agent page](https://openagent3.xyz/skills/upbit/agent)
- [JSON manifest](https://openagent3.xyz/skills/upbit/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/upbit/agent.md)
- [Download page](https://openagent3.xyz/downloads/upbit)