ClawKit Logo
ClawKitReliability Toolkit
Back to Registry
Official Verified

bitopro-spot

BitoPro exchange API wrapper for executing spot trades and managing your account. Use when: placing buy/sell orders (LIMIT / MARKET / STOP_LIMIT), cancelling orders, managing open orders, batch order operations, querying trade fills and order history, checking account balances, viewing deposit/withdrawal history, initiating withdrawals, or fetching pre-trade execution data for a single specified pair (real-time ticker, order-book depth, recent trades, candlestick/K-line), or pre-trade spec/precision lookup that is part of placing an order. Supports TWD (New Taiwan Dollar) fiat trading pairs. Requires API key. For market-wide indicators (Fear & Greed, dominance, rankings, trending, multi-timeframe % change, listing catalog), use `bitopro-market-intel`.

skill-install — Terminal

Install via CLI (Recommended)

clawhub install openclaw/skills/skills/bitopro/bitopro-skills-hub
Or

BitoPro Spot Skill

You are an AI agent equipped with the full BitoPro cryptocurrency exchange API (22 endpoints). Use this skill when the user needs to: check crypto prices, view order books, look up candlestick charts, query trading pair info and fees, get OTC prices, check account balances, place or batch-place orders, cancel single/batch/all orders, query order details and trade fills, or view deposit and withdrawal history on BitoPro. BitoPro is a Taiwan-based exchange that supports TWD (New Taiwan Dollar) fiat trading pairs.

Quick Start

  1. Set environment variables: BITOPRO_API_KEY, BITOPRO_API_SECRET, BITOPRO_EMAIL
  2. Public endpoints (tickers, order book, trades, candlesticks) require no auth
  3. Private endpoints (balance, orders) require HMAC-SHA384 signing — see references/authentication.md

Prerequisites

RequirementDetails
API credentialsBitoPro dashboard → API Management
Environment variablesBITOPRO_API_KEY, BITOPRO_API_SECRET, BITOPRO_EMAIL
Base URLhttps://api.bitopro.com/v3
Pair formatLowercase with underscore: btc_twd, eth_twd, usdt_twd

Security Notes

  • BITOPRO_API_KEY: Show first 5 + last 4 characters only (e.g., abc12...6789)
  • BITOPRO_API_SECRET: Always mask, never display any portion
  • Before placing or cancelling any order, display full order details and obtain explicit user confirmation
  • All Skill orders must include clientId: 2147483647 for tracking

Quick Reference

EndpointMethodDescriptionAuth
/tickers/{pair}GETReal-time ticker dataNo
/order-book/{pair}GETOrder book depthNo
/trades/{pair}GETRecent trade recordsNo
/trading-history/{pair}GETOHLCV candlesticksNo
/provisioning/trading-pairsGETTrading pair infoNo
/provisioning/currenciesGETCurrency infoNo
/provisioning/limitations-and-feesGETFees and limitsNo
/price/otc/{currency}GETOTC buy/sell priceNo
/accounts/balanceGETAccount balancesYes
/orders/{pair}POSTCreate orderYes
/orders/batchPOSTCreate batch orders (max 10)Yes
/orders/{pair}/{orderId}GETGet single orderYes
/orders/{pair}/{orderId}DELETECancel orderYes
/ordersPUTCancel batch ordersYes
/orders/all or /orders/{pair}DELETECancel all ordersYes
/orders/openGETOpen ordersYes
/orders/all/{pair}GETOrder historyYes
/orders/trades/{pair}GETTrade fillsYes
/wallet/depositHistory/{currency}GETDeposit historyYes
/wallet/withdrawHistory/{currency}GETWithdraw historyYes
/wallet/withdraw/{currency}/{serial}GETGet withdraw detailYes
/wallet/withdraw/{currency}POSTCreate withdrawYes

Enums

Metadata

Author@bitopro
Stars4473
Views0
Updated2026-05-01
View Author Profile
AI Skill Finder

Not sure this is the right skill?

Describe what you want to build — we'll match you to the best skill from 16,000+ options.

Find the right skill
Add to Configuration

Paste this into your clawhub.json to enable this plugin.

{
  "plugins": {
    "official-bitopro-bitopro-skills-hub": {
      "enabled": true,
      "auto_update": true
    }
  }
}
Safety NoteClawKit audits metadata but not runtime behavior. Use with caution.