eToro Public API
Base URL: https://public-api.etoro.com/api/v1
About
This skill allows to interact with the user's eToro account programatically, including executing trades.
Authentication & Required Headers
Keys (request from the user on install)
- Public API Key: application
- User Key: user account
- Environment: Real Portfolio or Virtual Portfolio (real/demo)
Key generation (user-facing):
- Log in to eToro.
- Settings > Trading.
- Create New Key.
- Choose Environment (Real or Virtual/Demo) and Permissions (Read or Write).
- Verify identity and copy the generated User Key.
Headers (every request):
x-request-id: unique UUID per request
x-api-key: Public API Key ()
x-user-key: User Key ()
Example:
curl -X GET "https://public-api.etoro.com/api/v1/watchlists" \
-H "x-request-id: <UUID>" \
-H "x-api-key: <PUBLIC_KEY>" \
-H "x-user-key: <USER_KEY>"
Request Conventions
- All paths below are relative to the Base URL (which already includes
/api/v1).
Example: GET /watchlists means GET https://public-api.etoro.com/api/v1/watchlists.
- Query params go in the URL, path params go in the URL path.
- For query params that are documented as
array, send them as comma-separated values (e.g., instrumentIds=1001,1002).
- Pagination patterns vary by endpoint:
- Search:
pageNumber, pageSize
- People search & trade history:
page, pageSize
- Feeds:
take, offset
- Watchlist items listing:
pageNumber, itemsPerPage
- Casing matters for request bodies:
- Trading execution uses PascalCase fields (e.g.,
InstrumentID, IsBuy, Leverage).
- Market close body uses
InstrumentId (capital I, lowercase d).
- Watchlist items use
ItemId, ItemType, ItemRank.
- Feeds post body uses lower camel (
owner, message, tags, mentions, attachments).
- Some responses may use different casing for similar concepts (e.g.,
instrumentId vs InstrumentID). When extracting IDs, handle both if present.
Demo vs Real Trading
- Use demo execution endpoints (contain
/demo/) for testing and paper trading.
- Use non-demo execution endpoints for real trading.
- For portfolio/PnL:
- Demo:
/trading/info/demo/*
- Real:
/trading/info/portfolio and /trading/info/real/pnl
- Ensure your key environment matches the endpoint (Virtual vs Real). Each User Key is associated with a specific environment.
Use Defaults
- Important: You don't need to specify all parameters. If the user doesn't specify leverage for example, don't send it on the API request.
Quick Start (Demo Trade)
- Resolve
instrumentId using search.
fields is required on search requests.
curl -X GET "https://public-api.etoro.com/api/v1/market-data/search?internalSymbolFull=BTC&fields=instrumentId,internalSymbolFull,displayname" \
-H "x-api-key: <PUBLIC_KEY>" \
-H "x-user-key: <USER_KEY>" \
-H "x-request-id: <UUID>"
- Place a demo market order by amount (PascalCase body):
curl -X POST "https://public-api.etoro.com/api/v1/trading/execution/demo/market-open-orders/by-amount" \
-H "x-api-key: <PUBLIC_KEY>" \
-H "x-user-key: <USER_KEY>" \
-H "x-request-id: <UUID>" \
-H "Content-Type: application/json" \
-d '{
"InstrumentID": 100000,
"IsBuy": true,
"Leverage": 1,
"Amount": 100
}'
Common IDs
instrumentId: from Search or Instruments metadata
positionId: from Portfolio endpoints
orderId: from execution responses or Portfolio endpoints
marketId: used by instrument feed endpoints (typically available in instrument metadata/search fields)
userId: numeric eToro user ID (often referred to as CID in responses; discover via People endpoints/search)
watchlistId: from watchlists list/create endpoints
Market Data (Requests)
Search instruments
GET /market-data/search
- Required query:
fields (comma-separated list of instrument fields to return)
- Optional:
searchText, pageSize, pageNumber, sort
- The Search endpoint supports filtering by fields returned in results; for exact symbol lookup, use
internalSymbolFull as a query param and verify the exact match.
- Recommended minimal
fields when you need IDs: include the instrument identifier (may appear as instrumentId or InstrumentID), plus internalSymbolFull and displayname (and marketId if you plan to use Feeds).
Metadata
GET /market-data/instruments
Filters: instrumentIds, exchangeIds, stocksIndustryIds, instrumentTypeIds.
Prices & history
GET /market-data/instruments/rates
Required: instrumentIds (comma-separated).
GET /market-data/instruments/history/closing-price
Returns historical closing prices for all instruments (bulk).
GET /market-data/instruments/{instrumentId}/history/candles/{direction}/{interval}/{candlesCount}
direction: asc or desc. candlesCount max 1000.
Use only supported interval values (confirm via docs if unsure).
Reference data
GET /market-data/exchanges (optional exchangeIds)
GET /market-data/instrument-types
GET /market-data/stocks-industries (optional stocksIndustryIds)
Trading Execution (Requests)
Requires a key with appropriate permissions (typically Write) and the correct environment (Demo vs Real).
Market Open Orders (by amount)
Endpoints:
POST /trading/execution/demo/market-open-orders/by-amount
POST /trading/execution/market-open-orders/by-amount
Body (PascalCase, JSON):
- Required:
InstrumentID, IsBuy, Leverage, Amount
- Optional:
StopLossRate, TakeProfitRate, IsTslEnabled, IsNoStopLoss, IsNoTakeProfit
Market Open Orders (by units)
Endpoints:
POST /trading/execution/demo/market-open-orders/by-units
POST /trading/execution/market-open-orders/by-units
Body (PascalCase, JSON):
- Required:
InstrumentID, IsBuy, Leverage, AmountInUnits
- Optional:
StopLossRate, TakeProfitRate, IsTslEnabled, IsNoStopLoss, IsNoTakeProfit
Cancel Market Open Orders
Endpoints:
DELETE /trading/execution/demo/market-open-orders/{orderId}
DELETE /trading/execution/market-open-orders/{orderId}
Market Close Orders
Endpoints:
POST /trading/execution/demo/market-close-orders/positions/{positionId}
POST /trading/execution/market-close-orders/positions/{positionId}
DELETE /trading/execution/demo/market-close-orders/{orderId}
DELETE /trading/execution/market-close-orders/{orderId}
Body (JSON):
- Required:
InstrumentId
- Optional:
UnitsToDeduct (number or null)
Partial close: set UnitsToDeduct.
Full close: set UnitsToDeduct to null.
You must close by positionId, not by symbol.
Market-if-touched (Limit) Orders
Endpoints:
POST /trading/execution/demo/limit-orders
DELETE /trading/execution/demo/limit-orders/{orderId}
POST /trading/execution/limit-orders
DELETE /trading/execution/limit-orders/{orderId}
Body (PascalCase, JSON):
- Required:
InstrumentID, IsBuy, Leverage, Rate, and one of Amount or AmountInUnits
- Optional:
StopLossRate, TakeProfitRate, IsTslEnabled, IsNoStopLoss, IsNoTakeProfit
- Do not send:
IsDiscounted, CID
Trading Info & Portfolio (Requests)
GET /trading/info/demo/pnl
GET /trading/info/real/pnl
GET /trading/info/demo/portfolio
GET /trading/info/portfolio
Use these to discover positionId and orderId for close/cancel flows.
GET /trading/info/trade/history
Required: minDate (YYYY-MM-DD). Optional: page, pageSize.
Watchlists (Requests)
User watchlists
GET /watchlists
Optional: itemsPerPageForSingle, ensureBuiltinWatchlists, addRelatedAssets.
GET /watchlists/{watchlistId}
Optional: pageNumber, itemsPerPage.
POST /watchlists
Query: name (required), type, dynamicQuery (optional). (Uses query params, not a JSON body.)
PUT /watchlists/{watchlistId}
Query: newName (required). (Uses query params, not a JSON body.)
DELETE /watchlists/{watchlistId}
Watchlist items (body schema)
WatchlistItemDto fields:
ItemId (required, int)
ItemType (required, string: Instrument or Person)
ItemRank (optional, int)
Endpoints:
POST /watchlists/{watchlistId}/items
PUT /watchlists/{watchlistId}/items
DELETE /watchlists/{watchlistId}/items
Example body:
[
{ "ItemId": 12345, "ItemType": "Instrument", "ItemRank": 1 },
{ "ItemId": 67890, "ItemType": "Instrument", "ItemRank": 2 }
]
Default watchlists
POST /watchlists/default-watchlist/selected-items
GET /watchlists/default-watchlists/items
Optional: itemsLimit, itemsPerPage.
POST /watchlists/newasdefault-watchlist
Query: name (required), type, dynamicQuery (optional).
PUT /watchlists/setUserSelectedUserDefault/{watchlistId}
PUT /watchlists/rank/{watchlistId}
Query: newRank (required).
Public watchlists
GET /watchlists/public/{userId}
GET /watchlists/public/{userId}/{watchlistId}
Feeds (Requests)
Read feeds
GET /feeds/instrument/{marketId}
Optional: requesterUserId, take, offset, badgesExperimentIsEnabled, reactionsPageSize.
GET /feeds/user/{userId}
Optional: requesterUserId, take, offset, badgesExperimentIsEnabled, reactionsPageSize.
Notes:
marketId is associated with an instrument (typically available via instrument metadata/search if you include it in fields).
userId is a numeric user identifier (CID). If you only have a username, discover the numeric ID via People endpoints (see User Info & Analytics).
Create post
POST /feeds/post
- Body fields (lower camel, JSON):
owner (int)
message (string)
tags: { "tags": [{ "name": "...", "id": "..." }] }
mentions: { "mentions": [{ "userName": "...", "id": "...", "isDirect": true }] }
attachments: array of objects with url, title, host, description, mediaType, and optional media.
Minimal example:
{ "message": "Hello eToro feed!" }
Curated Lists & Recommendations (Requests)
GET /curated-lists
GET /market-recommendations/{itemsCount}
Popular Investors (Copiers)
User Info & Analytics (Requests)
GET /user-info/people
Optional: usernames, cidList.
Use this to map username ↔ CID (userId) when you need numeric userId for feeds/public watchlists.
GET /user-info/people/search
Required: period. Optional: page, pageSize, sort, popularInvestor, gainMax, maxDailyRiskScoreMin, maxDailyRiskScoreMax, maxMonthlyRiskScoreMin, maxMonthlyRiskScoreMax, weeksSinceRegistrationMin, countryId, instrumentId, instrumentPctMin, instrumentPctMax, isTestAccount, and other filters.
GET /user-info/people/{username}/gain
GET /user-info/people/{username}/daily-gain
Required: minDate, maxDate, type (Daily or Period).
GET /user-info/people/{username}/portfolio/live
GET /user-info/people/{username}/tradeinfo
Required: period (e.g., LastTwoYears).
Responses & Schemas
For response schemas and full examples, refer to:
1---2name: etoro3description: Use when the user wants an agent to interact with the eToro API for market data, portfolio and social features, or trade execution.4---56# eToro Public API78Base URL: `https://public-api.etoro.com/api/v1`910## About1112This skill allows to interact with the user's eToro account programatically, including executing trades.1314## Authentication & Required Headers1516**Keys (request from the user on install)**17- **Public API Key**: application18- **User Key**: user account19- **Environment**: Real Portfolio or Virtual Portfolio (real/demo)2021**Key generation (user-facing):**221. Log in to eToro.232. Settings > Trading.243. Create New Key.254. Choose **Environment** (Real or Virtual/Demo) and **Permissions** (Read or Write).265. Verify identity and copy the generated User Key.2728**Headers (every request):**29- `x-request-id`: unique UUID per request30- `x-api-key`: Public API Key (<PUBLIC_KEY>)31- `x-user-key`: User Key (<USER_KEY>)3233Example:34```bash35curl -X GET "https://public-api.etoro.com/api/v1/watchlists" \36 -H "x-request-id: <UUID>" \37 -H "x-api-key: <PUBLIC_KEY>" \38 -H "x-user-key: <USER_KEY>"39```4041## Request Conventions42- **All paths below are relative to the Base URL** (which already includes `/api/v1`).43 Example: `GET /watchlists` means `GET https://public-api.etoro.com/api/v1/watchlists`.44- Query params go in the URL, path params go in the URL path.45- For query params that are documented as `array`, send them as **comma-separated values** (e.g., `instrumentIds=1001,1002`).46- Pagination patterns vary by endpoint:47 - Search: `pageNumber`, `pageSize`48 - People search & trade history: `page`, `pageSize`49 - Feeds: `take`, `offset`50 - Watchlist items listing: `pageNumber`, `itemsPerPage`51- **Casing matters** for request bodies:52 - Trading execution uses **PascalCase** fields (e.g., `InstrumentID`, `IsBuy`, `Leverage`).53 - Market close body uses `InstrumentId` (capital I, lowercase d).54 - Watchlist items use `ItemId`, `ItemType`, `ItemRank`.55 - Feeds post body uses lower camel (`owner`, `message`, `tags`, `mentions`, `attachments`).56- Some responses may use different casing for similar concepts (e.g., `instrumentId` vs `InstrumentID`). When extracting IDs, handle both if present.5758## Demo vs Real Trading5960- Use **demo execution endpoints** (contain `/demo/`) for testing and paper trading.61- Use **non-demo execution endpoints** for real trading.62- For portfolio/PnL:63 - Demo: `/trading/info/demo/*`64 - Real: `/trading/info/portfolio` and `/trading/info/real/pnl`65- Ensure your key environment matches the endpoint (Virtual vs Real). Each User Key is associated with a specific environment.6667## Use Defaults6869- Important: You don't need to specify all parameters. If the user doesn't specify leverage for example, don't send it on the API request.7071## Quick Start (Demo Trade)72731) **Resolve `instrumentId`** using search.74`fields` is required on search requests.7576```bash77curl -X GET "https://public-api.etoro.com/api/v1/market-data/search?internalSymbolFull=BTC&fields=instrumentId,internalSymbolFull,displayname" \78 -H "x-api-key: <PUBLIC_KEY>" \79 -H "x-user-key: <USER_KEY>" \80 -H "x-request-id: <UUID>"81```82832) **Place a demo market order by amount** (PascalCase body):84```bash85curl -X POST "https://public-api.etoro.com/api/v1/trading/execution/demo/market-open-orders/by-amount" \86 -H "x-api-key: <PUBLIC_KEY>" \87 -H "x-user-key: <USER_KEY>" \88 -H "x-request-id: <UUID>" \89 -H "Content-Type: application/json" \90 -d '{91 "InstrumentID": 100000,92 "IsBuy": true,93 "Leverage": 1,94 "Amount": 10095 }'96```9798## Common IDs99100- `instrumentId`: from Search or Instruments metadata101- `positionId`: from Portfolio endpoints102- `orderId`: from execution responses or Portfolio endpoints103- `marketId`: used by instrument feed endpoints (typically available in instrument metadata/search fields)104- `userId`: numeric eToro user ID (often referred to as **CID** in responses; discover via People endpoints/search)105- `watchlistId`: from watchlists list/create endpoints106107## Market Data (Requests)108109**Search instruments**110- `GET /market-data/search`111- Required query: `fields` (comma-separated list of instrument fields to return)112- Optional: `searchText`, `pageSize`, `pageNumber`, `sort`113- The Search endpoint supports filtering by fields returned in results; for exact symbol lookup, use `internalSymbolFull` as a query param and verify the exact match.114- Recommended minimal `fields` when you need IDs: include the instrument identifier (may appear as `instrumentId` or `InstrumentID`), plus `internalSymbolFull` and `displayname` (and `marketId` if you plan to use Feeds).115116**Metadata**117- `GET /market-data/instruments`118 Filters: `instrumentIds`, `exchangeIds`, `stocksIndustryIds`, `instrumentTypeIds`.119120**Prices & history**121- `GET /market-data/instruments/rates`122 Required: `instrumentIds` (comma-separated).123- `GET /market-data/instruments/history/closing-price`124 Returns historical closing prices for all instruments (bulk).125- `GET /market-data/instruments/{instrumentId}/history/candles/{direction}/{interval}/{candlesCount}`126 `direction`: `asc` or `desc`. `candlesCount` max 1000.127 Use only supported `interval` values (confirm via docs if unsure).128129**Reference data**130- `GET /market-data/exchanges` (optional `exchangeIds`)131- `GET /market-data/instrument-types`132- `GET /market-data/stocks-industries` (optional `stocksIndustryIds`)133134## Trading Execution (Requests)135136> Requires a key with appropriate permissions (typically **Write**) and the correct environment (Demo vs Real).137138### Market Open Orders (by amount)139140Endpoints:141- `POST /trading/execution/demo/market-open-orders/by-amount`142- `POST /trading/execution/market-open-orders/by-amount`143144Body (PascalCase, JSON):145- **Required:** `InstrumentID`, `IsBuy`, `Leverage`, `Amount`146- **Optional:** `StopLossRate`, `TakeProfitRate`, `IsTslEnabled`, `IsNoStopLoss`, `IsNoTakeProfit`147148### Market Open Orders (by units)149150Endpoints:151- `POST /trading/execution/demo/market-open-orders/by-units`152- `POST /trading/execution/market-open-orders/by-units`153154Body (PascalCase, JSON):155- **Required:** `InstrumentID`, `IsBuy`, `Leverage`, `AmountInUnits`156- **Optional:** `StopLossRate`, `TakeProfitRate`, `IsTslEnabled`, `IsNoStopLoss`, `IsNoTakeProfit`157158### Cancel Market Open Orders159160Endpoints:161- `DELETE /trading/execution/demo/market-open-orders/{orderId}`162- `DELETE /trading/execution/market-open-orders/{orderId}`163164### Market Close Orders165166Endpoints:167- `POST /trading/execution/demo/market-close-orders/positions/{positionId}`168- `POST /trading/execution/market-close-orders/positions/{positionId}`169- `DELETE /trading/execution/demo/market-close-orders/{orderId}`170- `DELETE /trading/execution/market-close-orders/{orderId}`171172Body (JSON):173- **Required:** `InstrumentId`174- **Optional:** `UnitsToDeduct` (number or `null`)175176Partial close: set `UnitsToDeduct`.177Full close: set `UnitsToDeduct` to `null`.178You must close by `positionId`, not by symbol.179180### Market-if-touched (Limit) Orders181182Endpoints:183- `POST /trading/execution/demo/limit-orders`184- `DELETE /trading/execution/demo/limit-orders/{orderId}`185- `POST /trading/execution/limit-orders`186- `DELETE /trading/execution/limit-orders/{orderId}`187188Body (PascalCase, JSON):189- **Required:** `InstrumentID`, `IsBuy`, `Leverage`, **`Rate`**, and **one of** `Amount` **or** `AmountInUnits`190- **Optional:** `StopLossRate`, `TakeProfitRate`, `IsTslEnabled`, `IsNoStopLoss`, `IsNoTakeProfit`191- **Do not send:** `IsDiscounted`, `CID`192193## Trading Info & Portfolio (Requests)194195- `GET /trading/info/demo/pnl`196- `GET /trading/info/real/pnl`197- `GET /trading/info/demo/portfolio`198- `GET /trading/info/portfolio`199 Use these to discover `positionId` and `orderId` for close/cancel flows.200- `GET /trading/info/trade/history`201 Required: `minDate` (YYYY-MM-DD). Optional: `page`, `pageSize`.202203## Watchlists (Requests)204205**User watchlists**206- `GET /watchlists`207 Optional: `itemsPerPageForSingle`, `ensureBuiltinWatchlists`, `addRelatedAssets`.208- `GET /watchlists/{watchlistId}`209 Optional: `pageNumber`, `itemsPerPage`.210- `POST /watchlists`211 Query: `name` (required), `type`, `dynamicQuery` (optional). (Uses query params, not a JSON body.)212- `PUT /watchlists/{watchlistId}`213 Query: `newName` (required). (Uses query params, not a JSON body.)214- `DELETE /watchlists/{watchlistId}`215216**Watchlist items (body schema)**217218`WatchlistItemDto` fields:219- `ItemId` (required, int)220- `ItemType` (required, string: `Instrument` or `Person`)221- `ItemRank` (optional, int)222223Endpoints:224- `POST /watchlists/{watchlistId}/items`225- `PUT /watchlists/{watchlistId}/items`226- `DELETE /watchlists/{watchlistId}/items`227228Example body:229```json230[231 { "ItemId": 12345, "ItemType": "Instrument", "ItemRank": 1 },232 { "ItemId": 67890, "ItemType": "Instrument", "ItemRank": 2 }233]234```235236**Default watchlists**237- `POST /watchlists/default-watchlist/selected-items`238- `GET /watchlists/default-watchlists/items`239 Optional: `itemsLimit`, `itemsPerPage`.240- `POST /watchlists/newasdefault-watchlist`241 Query: `name` (required), `type`, `dynamicQuery` (optional).242- `PUT /watchlists/setUserSelectedUserDefault/{watchlistId}`243- `PUT /watchlists/rank/{watchlistId}`244 Query: `newRank` (required).245246**Public watchlists**247- `GET /watchlists/public/{userId}`248- `GET /watchlists/public/{userId}/{watchlistId}`249250## Feeds (Requests)251252**Read feeds**253- `GET /feeds/instrument/{marketId}`254 Optional: `requesterUserId`, `take`, `offset`, `badgesExperimentIsEnabled`, `reactionsPageSize`.255- `GET /feeds/user/{userId}`256 Optional: `requesterUserId`, `take`, `offset`, `badgesExperimentIsEnabled`, `reactionsPageSize`.257258Notes:259- `marketId` is associated with an instrument (typically available via instrument metadata/search if you include it in `fields`).260- `userId` is a numeric user identifier (CID). If you only have a username, discover the numeric ID via People endpoints (see User Info & Analytics).261262**Create post**263- `POST /feeds/post`264- Body fields (lower camel, JSON):265 - `owner` (int)266 - `message` (string)267 - `tags`: `{ "tags": [{ "name": "...", "id": "..." }] }`268 - `mentions`: `{ "mentions": [{ "userName": "...", "id": "...", "isDirect": true }] }`269 - `attachments`: array of objects with `url`, `title`, `host`, `description`, `mediaType`, and optional `media`.270271Minimal example:272```json273{ "message": "Hello eToro feed!" }274```275276## Curated Lists & Recommendations (Requests)277278- `GET /curated-lists`279- `GET /market-recommendations/{itemsCount}`280281## Popular Investors (Copiers)282283- `GET /pi-data/copiers`284285## User Info & Analytics (Requests)286287- `GET /user-info/people`288 Optional: `usernames`, `cidList`.289 Use this to map **username ↔ CID (userId)** when you need numeric `userId` for feeds/public watchlists.290- `GET /user-info/people/search`291 Required: `period`. Optional: `page`, `pageSize`, `sort`, `popularInvestor`, `gainMax`, `maxDailyRiskScoreMin`, `maxDailyRiskScoreMax`, `maxMonthlyRiskScoreMin`, `maxMonthlyRiskScoreMax`, `weeksSinceRegistrationMin`, `countryId`, `instrumentId`, `instrumentPctMin`, `instrumentPctMax`, `isTestAccount`, and other filters.292- `GET /user-info/people/{username}/gain`293- `GET /user-info/people/{username}/daily-gain`294 Required: `minDate`, `maxDate`, `type` (`Daily` or `Period`).295- `GET /user-info/people/{username}/portfolio/live`296- `GET /user-info/people/{username}/tradeinfo`297 Required: `period` (e.g., `LastTwoYears`).298299## Responses & Schemas300301For response schemas and full examples, refer to:302- https://api-portal.etoro.com/303- MCP server: `https://api-portal.etoro.com/mcp`