Tinkoff Investments
Coming SoonCIS Brokers
connectorType: "tinkoff"Leading Russian online investment platform
Connection Architecture
Tinkoff Investments
WebSocket / REST→
Connector
libs/exchange-tinkoff→
Provider
:8081/api→
Detector
Advisor
Studio
The connector feeds exchange data to Provider. Detector receives market data, Studio receives read views, and Advisor sees only signed candidate evidence.
Technologies
Transport
gRPCREST
Authentication
Bearer TokenData Format
Protobuf / JSONFeatures
Single Token
Best for
- Investors seeking programmatic access to Russian equities and bonds traded on MOEX.
- Quantitative strategies targeting the Russian market with real-time orderbook and trade data.
- Portfolio managers monitoring ruble-denominated assets alongside global positions.
Connect via code
1Environment variables (.env)
TINKOFF_TOKEN=your_token_here
2Connector configuration
// config/config.provider.json
{
"provider": {
"connectors": [
{
"connectorType": "tinkoff",
"enabled": true,
"token": "${TINKOFF_TOKEN}",
"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
Public verification 1. Configure credentials in the private Provider environment. 2. Verify connector status in the internal Studio/Provider console. 3. Use Barfinex public pages to inspect market data. Operator Provider commands and tokens remain in internal runbooks only.
Available via Barfinex API
/api/candles/tinkoff/...
/api/trades/tinkoff/...
/api/orderbook/tinkoff/...
/api/account/tinkoff/...
/api/symbols/tinkoff/...
/api/assets/tinkoff/...
Studio graphical setup — in development, coming in the next release.
Important
Single API token authentication — no secret required.
MOEX trading sessions follow MSK (Moscow Standard Time, UTC+3).
Access to certain instruments may be restricted depending on account qualification status.
Connect in Studio(soon)
Exchange Website