Quick Reference
API Quick Reference
All 60 endpoints in one place. Search, filter, copy. Full schemas and try-it requests live in the API Reference on api-portal.etoro.com.
60 endpoints across 11 areas
WebSocket API
Real-time streams use a WebSocket connection (not REST). Authenticate once, then subscribe to topics. See the WebSocket overview on api-portal.etoro.com for full message schemas.
Connection URL
wss://ws.etoro.com/wsAuthenticate (send after connect)
{
"operation": "Authenticate",
"data": {
"userKey": "YOUR_USER_KEY",
"apiKey": "YOUR_PUBLIC_API_KEY"
}
}Subscribe to instrument topics
{
"operation": "Subscribe",
"data": {
"topics": ["instrument:1001"],
"snapshot": false
}
}