Clone, customize, ship.
Ready-to-use project templates for the eToro API—follow a guide, add your keys, and ship trading bots, dashboards, and analytics faster.
Starter projects
Each template includes structure, dependencies, and patterns aligned with our guides—pick a stack and start from a working baseline.
Trading Bot Starter
A minimal Node.js project to place orders, manage positions, and automate your first trading workflows with the eToro API.
mkdir my-trading-bot && cd my-trading-bot && npm init -yReal-Time Price Dashboard
A React and Next.js dashboard with live market data and charts so you can monitor instruments and streams in one place.
npx create-next-app@latest my-dashboard --typescriptTrader Leaderboard
Build rankings and comparisons for Popular Investors using Node.js and the social and user APIs.
mkdir my-leaderboard && cd my-leaderboard && npm init -ySocial Analytics Dashboard
An advanced React and Next.js dashboard for exploring social feeds, engagement patterns, and market-facing analytics.
npx create-next-app@latest my-analytics --typescriptWatchlist Manager CLI
A Node.js command-line tool to add, remove, and sync watchlists at scale for automation and scripting.
mkdir my-watchlist-cli && cd my-watchlist-cli && npm init -yMCP Agent Starter
A Python starter for AI agents that use the eToro MCP server—ideal for Cursor, Claude, and other AI-native workflows.
mkdir my-mcp-agent && cd my-mcp-agent && python3 -m venv .venv