FalconX
Coming SoonOTC / Institutional
connectorType: "falconx"Institutional digital asset platform
Connection Architecture
FalconX
WebSocket / REST→
Connector
libs/exchange-falconx→
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
REST
Authentication
API Key + SecretData Format
JSONFeatures
Data Only
Best for
- Hedge funds and family offices that need aggregated crypto pricing across exchanges without managing multiple API connections.
- Institutional desks using FalconX credit lines and T+0 settlement as part of their execution workflow.
- Risk managers benchmarking execution quality against FalconX aggregated best-bid/offer data.
Connect via code
1Environment variables (.env)
FALCONX_API_KEY=your_key_here FALCONX_API_SECRET=your_secret_here
2Connector configuration
// config/config.provider.json
{
"provider": {
"connectors": [
{
"connectorType": "falconx",
"enabled": true,
"key": "${FALCONX_API_KEY}",
"secret": "${FALCONX_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/falconx/spot/BTCUSDT/h1?days=7"
Available via Barfinex API
/api/candles/falconx/...
/api/trades/falconx/...
/api/orderbook/falconx/...
/api/account/falconx/...
/api/symbols/falconx/...
/api/assets/falconx/...
Studio graphical setup — in development, coming in the next release.
Important
Order execution is NOT available through the standard API — this connector provides market data and price discovery only.
Institutional onboarding and KYB verification are required before a trading relationship can be established.
Supported Markets
Spot
Websitefalconx.io
Connect in Studio(soon)
Exchange Website