BCC Invest
Coming SoonKazakhstan Brokers
connectorType: "bcc_invest"Brokerage subsidiary of BCC bank
Connection Architecture
BCC Invest
WebSocket / REST→
Connector
libs/exchange-bcc-invest→
Provider
:8081/api→
Detector
Advisor
Studio
The connector receives data from the exchange and feeds it to Provider (port 8081). From there — to Detector, Advisor, and Studio.
Technologies
Transport
WebSocketREST
Authentication
API Key + SecretData Format
JSONBest for
- Kazakhstan-based investors accessing KASE equities and KZT bonds through BCC bank infrastructure.
- Retail clients of BCC Bank seeking to automate trading strategies on locally listed securities.
- Fixed-income focused portfolios monitoring the Kazakhstan corporate bond market.
Connect via code
1Environment variables (.env)
BCC_API_KEY=your_key_here BCC_API_SECRET=your_secret_here
2Connector configuration
// config/config.provider.json
{
"provider": {
"connectors": [
{
"connectorType": "bcc_invest",
"enabled": true,
"key": "${BCC_API_KEY}",
"secret": "${BCC_API_SECRET}",
"markets": [
{ "marketType": "spot", "symbols": [{ "name": "BTCUSDT" }] }
],
"subscriptions": [
{ "type": "PROVIDER_MARKETDATA_CANDLE", "symbols": ["BTCUSDT"], "intervals": ["min1", "h1"], "active": true },
{ "type": "PROVIDER_MARKETDATA_TRADE", "symbols": ["BTCUSDT"], "active": true },
{ "type": "PROVIDER_MARKETDATA_ORDERBOOK", "symbols": ["BTCUSDT"], "active": true }
]
}
]
}
}3Verify and query data
# Verify connection curl -H "Authorization: Bearer $PROVIDER_API_TOKEN" \ https://localhost:8081/api/exchanges/runtime-proof # Candles (last 7 days) curl -H "Authorization: Bearer $PROVIDER_API_TOKEN" \ "https://localhost:8081/api/candles/bcc_invest/spot/BTCUSDT/h1?days=7"
Available via Barfinex API
/api/candles/bcc_invest/...
/api/trades/bcc_invest/...
/api/orderbook/bcc_invest/...
/api/account/bcc_invest/...
/api/symbols/bcc_invest/...
/api/assets/bcc_invest/...
Studio graphical setup — in development, coming in the next release.
Important
API access is restricted to verified BCC Invest account holders.
Trading sessions follow ALMT (UTC+5).
Instrument universe is limited to KASE-listed securities; cross-border order routing is not supported.
Connect in Studio(soon)
Exchange Website