{
  "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": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/upbit",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=upbit",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "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."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "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."
        },
        {
          "label": "Upgrade existing",
          "body": "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."
        }
      ]
    },
    "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."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/upbit",
    "agentPageUrl": "https://openagent3.xyz/skills/upbit/agent",
    "manifestUrl": "https://openagent3.xyz/skills/upbit/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/upbit/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "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."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "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."
      },
      {
        "label": "Upgrade existing",
        "body": "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."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Overview",
        "body": "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."
      },
      {
        "title": "Quick Start",
        "body": "Fetch ticker data using Upbit's public API:\n\ncurl -s \"https://api.upbit.com/v1/ticker?markets=KRW-BTC\"\n\nReplace KRW-BTC with the desired market code (e.g., KRW-ETH, KRW-SUI, KRW-DOGE)."
      },
      {
        "title": "Market Code Format",
        "body": "Upbit uses KRW-{SYMBOL} format:\n\nBitcoin: KRW-BTC\nEthereum: KRW-ETH\nSui: KRW-SUI\nDogecoin: KRW-DOGE\n\nImportant: Always use uppercase for the symbol."
      },
      {
        "title": "Response Format",
        "body": "The API returns JSON with these key fields:\n\n{\n  \"market\": \"KRW-BTC\",\n  \"trade_price\": 145000000.0,\n  \"opening_price\": 144000000.0,\n  \"high_price\": 146000000.0,\n  \"low_price\": 143000000.0,\n  \"prev_closing_price\": 144000000.0,\n  \"change\": \"RISE\",\n  \"change_price\": 1000000.0,\n  \"change_rate\": 0.00694444,\n  \"signed_change_price\": 1000000.0,\n  \"signed_change_rate\": 0.00694444,\n  \"acc_trade_volume_24h\": 123.456,\n  \"acc_trade_price_24h\": 17890000000.0,\n  \"highest_52_week_price\": 150000000.0,\n  \"highest_52_week_date\": \"2025-12-01\",\n  \"lowest_52_week_price\": 100000000.0,\n  \"lowest_52_week_date\": \"2025-02-01\",\n  \"trade_date_kst\": \"20260209\",\n  \"trade_time_kst\": \"074511\"\n}"
      },
      {
        "title": "Key Fields",
        "body": "trade_price: Current price (KRW)\nchange: Price direction (RISE, FALL, EVEN)\nchange_price: Absolute change from previous close (KRW)\nchange_rate: Percentage change (0.00694444 = 0.69%)\nsigned_change_price: Signed price change (negative for falls)\nsigned_change_rate: Signed percentage change\nacc_trade_volume_24h: 24-hour trading volume (coins)\nacc_trade_price_24h: 24-hour trading value (KRW)\nhighest_52_week_price / lowest_52_week_price: 52-week price range\ntrade_date_kst / trade_time_kst: Last trade timestamp (Korea time)"
      },
      {
        "title": "Formatting Output",
        "body": "Present prices in a readable format with:\n\nCurrent price with change indicator (▲/▼)\nPercentage change from previous close\nDay range (high/low)\n24h volume in both coins and KRW\n52-week range for context\n\nExample output:\n\n**BTC/KRW (2026-02-09 07:45:11 기준)**\n\n- **현재가:** 145,000,000원\n- **전일대비:** +1,000,000원 (+0.69%) ▲\n- **시가:** 144,000,000원\n- **고가:** 146,000,000원\n- **저가:** 143,000,000원\n- **24시간 거래량:** 123.46 BTC\n- **24시간 거래대금:** 약 178억원\n\n**52주 기록**\n- 최고: 150,000,000원 (2025-12-01)\n- 최저: 100,000,000원 (2025-02-01)"
      },
      {
        "title": "Multiple Markets",
        "body": "Query multiple markets at once:\n\ncurl -s \"https://api.upbit.com/v1/ticker?markets=KRW-BTC,KRW-ETH,KRW-SUI\"\n\nReturns an array of ticker objects."
      },
      {
        "title": "Error Handling",
        "body": "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."
      }
    ],
    "body": "Upbit Price Lookup\nOverview\n\nQuery 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.\n\nQuick Start\n\nFetch ticker data using Upbit's public API:\n\ncurl -s \"https://api.upbit.com/v1/ticker?markets=KRW-BTC\"\n\n\nReplace KRW-BTC with the desired market code (e.g., KRW-ETH, KRW-SUI, KRW-DOGE).\n\nMarket Code Format\n\nUpbit uses KRW-{SYMBOL} format:\n\nBitcoin: KRW-BTC\nEthereum: KRW-ETH\nSui: KRW-SUI\nDogecoin: KRW-DOGE\n\nImportant: Always use uppercase for the symbol.\n\nResponse Format\n\nThe API returns JSON with these key fields:\n\n{\n  \"market\": \"KRW-BTC\",\n  \"trade_price\": 145000000.0,\n  \"opening_price\": 144000000.0,\n  \"high_price\": 146000000.0,\n  \"low_price\": 143000000.0,\n  \"prev_closing_price\": 144000000.0,\n  \"change\": \"RISE\",\n  \"change_price\": 1000000.0,\n  \"change_rate\": 0.00694444,\n  \"signed_change_price\": 1000000.0,\n  \"signed_change_rate\": 0.00694444,\n  \"acc_trade_volume_24h\": 123.456,\n  \"acc_trade_price_24h\": 17890000000.0,\n  \"highest_52_week_price\": 150000000.0,\n  \"highest_52_week_date\": \"2025-12-01\",\n  \"lowest_52_week_price\": 100000000.0,\n  \"lowest_52_week_date\": \"2025-02-01\",\n  \"trade_date_kst\": \"20260209\",\n  \"trade_time_kst\": \"074511\"\n}\n\nKey Fields\ntrade_price: Current price (KRW)\nchange: Price direction (RISE, FALL, EVEN)\nchange_price: Absolute change from previous close (KRW)\nchange_rate: Percentage change (0.00694444 = 0.69%)\nsigned_change_price: Signed price change (negative for falls)\nsigned_change_rate: Signed percentage change\nacc_trade_volume_24h: 24-hour trading volume (coins)\nacc_trade_price_24h: 24-hour trading value (KRW)\nhighest_52_week_price / lowest_52_week_price: 52-week price range\ntrade_date_kst / trade_time_kst: Last trade timestamp (Korea time)\nFormatting Output\n\nPresent prices in a readable format with:\n\nCurrent price with change indicator (▲/▼)\nPercentage change from previous close\nDay range (high/low)\n24h volume in both coins and KRW\n52-week range for context\n\nExample output:\n\n**BTC/KRW (2026-02-09 07:45:11 기준)**\n\n- **현재가:** 145,000,000원\n- **전일대비:** +1,000,000원 (+0.69%) ▲\n- **시가:** 144,000,000원\n- **고가:** 146,000,000원\n- **저가:** 143,000,000원\n- **24시간 거래량:** 123.46 BTC\n- **24시간 거래대금:** 약 178억원\n\n**52주 기록**\n- 최고: 150,000,000원 (2025-12-01)\n- 최저: 100,000,000원 (2025-02-01)\n\nMultiple Markets\n\nQuery multiple markets at once:\n\ncurl -s \"https://api.upbit.com/v1/ticker?markets=KRW-BTC,KRW-ETH,KRW-SUI\"\n\n\nReturns an array of ticker objects.\n\nError Handling\n\nIf 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": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/lkjsays/upbit",
    "publisherUrl": "https://clawhub.ai/lkjsays/upbit",
    "owner": "lkjsays",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "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"
  }
}