Create and manage watchlists
Create, read, update, and delete watchlists; add or remove instruments; set defaults and rename lists — everything needed for screeners, alerts, and personalized home screens.
Not writing raw API code? Build on eToro with MCP, Agent Skills, or no-code platforms like Base44 and Lovable.
A representative API call for this surface. Copy it, paste it, and see a response.
curl https://public-api.etoro.com/api/v1/watchlists \
-H "x-api-key: $ETORO_API_KEY" \
-H "x-user-key: $ETORO_USER_KEY" \
-H "x-request-id: $(uuidgen)"{
"watchlists": [
{
"id": "wl-001",
"name": "Tech Stocks",
"isDefault": true,
"instruments": [1001, 1002, 1051, 1128],
"instrumentCount": 4
},
{
"id": "wl-002",
"name": "Crypto Watch",
"isDefault": false,
"instruments": [100000, 100001, 100002],
"instrumentCount": 3
}
]
}These surfaces align with how teams use the Builders Portal — personal investing, shipping apps, or enterprise integrations.
Open the API Portal for this surface, start onboarding, or jump into the interactive playground.