eToro Connector π
SkillDatabases & dataeToro API integration - CopyTrader, real-time market data, portfolio analytics, and social features
Available today. Use it from your connected AI after setup.
No other account needed.
Connect ahel once, and every AI you use reads what you have installed.
Then ask your AI: use the eToro Connector π skill
What this skill tells your AI
The instructions your AI receives, as published by signal-execution-labs/forex-trading-ai-agent in skills/etoro-connector/SKILL.md and read by ahelβs review.
Connect to eToro's Public APIs. Access real-time market data, copy top traders, and leverage social trading features.
eToro launched public APIs in October 2025, providing free access to real-time market data, portfolio analytics, and social features.
Features
1. CopyTraderβ’ Integration
Copy up to 100 traders at once with eToro's flagship feature.
kit etoro discover
# Output:
π eToro Top Traders
ββββββββββββββββββββββββββββββββββ
Filter by: Strategy | Performance | Risk Score | Assets
Popular Investors:
ββββββββ¬ββββββββββββββββββ¬ββββββββββ¬βββββββββββ¬ββββββββββ¬ββββββββββββ
β Rank β Username β Return β Risk β Copiers β AUM β
ββββββββΌββββββββββββββββββΌββββββββββΌβββββββββββΌββββββββββΌββββββββββββ€
β 1 β @jaynemesis β +42.3% β 4/10 β 15,234 β $45M β
β 2 β @misterfx β +38.7% β 5/10 β 12,892 β $32M β
β 3 β @olivierdanvel β +35.2% β 3/10 β 9,756 β $28M β
β 4 β @tradingthomas β +31.8% β 4/10 β 7,543 β $19M β
β 5 β @cryptoexpert β +45.1% β 7/10 β 6,421 β $15M β
ββββββββ΄ββββββββββββββββββ΄ββββββββββ΄βββββββββββ΄ββββββββββ΄ββββββββββββ
Filters Applied: Min 12mo history | Min 100 copiers
2. Real-Time Market Data (Free API)
kit etoro markets
# Output:
π eToro Market Data
ββββββββββββββββββββββββββββββββββ
Stocks: Crypto:
β’ AAPL: $187.50 (+1.2%) β’ BTC: $51,230 (+2.1%)
β’ TSLA: $178.90 (+0.8%) β’ ETH: $2,890 (+3.4%)
β’ NVDA: $875.30 (+2.5%) β’ SOL: $105.20 (+5.2%)
β’ MSFT: $412.80 (+0.5%) β’ AVAX: $38.50 (+4.1%)
ETFs: Commodities:
β’ SPY: $512.30 (+0.3%) β’ Gold: $2,045 (+0.2%)
β’ QQQ: $445.20 (+0.6%) β’ Oil: $76.80 (-1.1%)
β’ VOO: $470.15 (+0.4%) β’ Silver: $22.90 (+0.5%)
Market Sentiment: BULLISH π’
Social Buzz: TSLA trending (+340% mentions)
3. Portfolio Analytics
kit etoro portfolio
# Output:
π eToro Portfolio Analytics
ββββββββββββββββββββββββββββββββββ
Total Value: $52,340
Cash: $5,200 (10%)
Invested: $47,140 (90%)
Asset Allocation:
ββ Stocks: 45% ($21,213)
ββ Crypto: 35% ($16,499)
ββ ETFs: 15% ($7,071)
ββ Commodities: 5% ($2,357)
Performance:
ββ Today: +$312 (+0.6%)
ββ Week: +$1,890 (+3.7%)
ββ Month: +$4,230 (+8.8%)
ββ YTD: +$12,450 (+31.2%)
Risk Analysis:
ββ Portfolio Beta: 1.23
ββ Volatility (30d): 18.5%
ββ Sharpe Ratio: 1.87
ββ Max Drawdown: -12.3%
Diversification Score: 7.2/10
Recommendation: Add commodities exposure
4. Social Features
kit etoro social
# Output:
π¬ eToro Social Feed
ββββββββββββββββββββββββββββββββββ
Trending Topics:
1. #Bitcoin - 12,340 posts
2. #Tesla - 8,920 posts
3. #AI - 6,780 posts
Top Posts from Copied Traders:
@jaynemesis (2h ago):
"Adding to my BTC position here. $50k support
holding strong. Target $60k by end of month."
π 1,234 | π¬ 89 | π 45
@misterfx (4h ago):
"Closed my EUR/USD short at 1.0820.
+180 pips profit. Waiting for next setup."
π 892 | π¬ 56 | π 23
@cryptoexpert (6h ago):
"SOL breaking out. My top altcoin pick for 2026."
π 2,456 | π¬ 234 | π 156
5. Smart Copy Allocation
kit etoro smartcopy
# Output:
π§ eToro Smart Copy Setup
ββββββββββββββββββββββββββββββββββ
K.I.T. analyzed 500+ Popular Investors and recommends:
Diversified Copy Portfolio ($10,000):
Low Risk Bundle (40% - $4,000):
ββ @olivierdanvel: $2,000 (3/10 risk)
ββ @conservative_joe: $2,000 (2/10 risk)
Medium Risk Bundle (40% - $4,000):
ββ @jaynemesis: $2,000 (4/10 risk)
ββ @tradingthomas: $2,000 (4/10 risk)
High Risk/High Reward (20% - $2,000):
ββ @cryptoexpert: $2,000 (7/10 risk)
Expected Performance:
ββ Target Return: +25-40% annually
ββ Max Drawdown: -15%
ββ Diversification: 5 traders across strategies
ββ Correlation: Low (0.32 avg between traders)
[DEPLOY PORTFOLIO] [CUSTOMIZE] [SIMULATE]
API Integration
import { EtoroConnector } from '@kit/skills';
const etoro = new EtoroConnector({
apiKey: process.env.ETORO_API_KEY, // Free API key from eToro
});
// Get market data (free, real-time)
const btcPrice = await etoro.getPrice('BTC');
const markets = await etoro.getMarkets(['stocks', 'crypto', 'etfs']);
// Discover Popular Investors
const traders = await etoro.discoverTraders({
minReturn: 20,
maxRisk: 6,
minMonths: 12,
sortBy: 'copiers'
});
// Get trader details
const profile = await etoro.getTraderProfile('jaynemesis');
// Portfolio analytics
const analytics = await etoro.getPortfolioAnalytics();
// Social feed
const feed = await etoro.getSocialFeed({
fromCopied: true,
trending: true
});
// Copy trading (requires connected account)
await etoro.copyTrader('jaynemesis', {
amount: 2000,
copyExisting: true,
stopLoss: -10
});
Configuration
# TOOLS.md
etoro:
enabled: true
api_key: ${ETORO_API_KEY}
# Market data
markets:
- stocks
- crypto
- etfs
- commodities
- forex
# Copy trading
copy:
max_traders: 10
max_allocation: 30% # of portfolio
copy_existing: true
default_stop_loss: -15%
# Social features
social:
follow_copied_traders: true
notifications: true
# Sync settings
sync_interval: 5m # Portfolio sync
Benefits of eToro API
- Free Real-Time Data - Stocks, crypto, ETFs, commodities, forex
- Social Insights - See what traders are saying and doing
- Copy Trading - One-click copy of successful traders
- Portfolio Analytics - Risk metrics, diversification analysis
- Multi-Asset - All markets in one place
Setup
- Get free API key at: https://api.etoro.com
- Add to your K.I.T. config:
kit config set ETORO_API_KEY=your_key_here - Enable the skill:
kit skills enable etoro-connector
Signals
- GitHub stars
- 136
- Forks
- 870
- Last commit
- Sep 2026
Advanced
- Catalog kind
- skill
- Gateway key
etoro-connector- Source
- github.com/signal-execution-labs/forex-trading-ai-agent