eToro
Coming SoonEuropean Brokers
connectorType: "etoro"Social trading and multi-asset platform
Connection Architecture
eToro
WebSocket / REST→
Connector
libs/exchange-etoro→
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 Polling
Authentication
API Key + SecretData Format
JSONBest for
- Retail investors who want to mirror top traders automatically.
- Analysts tracking social sentiment across 30M user base.
- Multi-asset portfolios combining crypto, equities, and ETFs in one account.
Connect via code
1Environment variables (.env)
ETORO_API_KEY=your_key_here ETORO_API_SECRET=your_secret_here
2Connector configuration
// config/config.provider.json
{
"provider": {
"connectors": [
{
"connectorType": "etoro",
"enabled": true,
"key": "${ETORO_API_KEY}",
"secret": "${ETORO_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/etoro/spot/BTCUSDT/h1?days=7"
Available via Barfinex API
/api/candles/etoro/...
/api/trades/etoro/...
/api/orderbook/etoro/...
/api/account/etoro/...
/api/symbols/etoro/...
/api/assets/etoro/...
Studio graphical setup — in development, coming in the next release.
Important
eToro Partner API access requires a separate commercial agreement — standard retail accounts do not expose REST endpoints.
CFD instruments are not available in the US.
Connect in Studio(soon)
Exchange Website