Coinglass
Coming SoonMarket Data Providers
connectorType: "coinglass"Crypto derivatives data and analytics
Connection Architecture
Coinglass
WebSocket / REST→
Connector
libs/exchange-coinglass→
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
WebSocketREST
Authentication
API KeyData Format
JSONFeatures
Data OnlyDerivatives Analytics
Best for
- Liquidation cascade monitors tracking cumulative long/short liquidation levels across exchanges in real time.
- Funding rate arbitrage strategies identifying persistent funding imbalances between perpetual markets.
- Systemic risk dashboards watching open interest concentration and leverage ratios as macro warning indicators.
Connect via code
1Environment variables (.env)
COINGLASS_API_KEY=your_key_here
2Connector configuration
// config/config.provider.json
{
"provider": {
"connectors": [
{
"connectorType": "coinglass",
"enabled": true,
"key": "${COINGLASS_API_KEY}",
"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/coinglass/...
/api/trades/coinglass/...
/api/orderbook/coinglass/...
/api/account/coinglass/...
/api/symbols/coinglass/...
/api/assets/coinglass/...
Studio graphical setup — in development, coming in the next release.
Important
This is a DATA ONLY connector — no order execution.
Historical data beyond 30 days and high-frequency endpoints require a paid API plan.
Some advanced metrics (per-exchange liquidation heatmaps) are exclusively available on premium tiers.
Supported Markets
SpotFutures
Websitewww.coinglass.com
Connect in Studio(soon)
Exchange Website