AI-managed portfolios with token delegation
Create and manage agent portfolios and issue scoped user tokens so autonomous agents can trade on behalf of users with explicit, revocable permissions — the dedicated surface for AI-driven portfolio products.
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 -X POST https://public-api.etoro.com/api/v1/agent-portfolios \
-H "x-api-key: $ETORO_API_KEY" \
-H "x-user-key: $ETORO_USER_KEY" \
-H "x-request-id: $(uuidgen)" \
-H "Content-Type: application/json" \
-d '{
"name": "momentum-strategy-v1",
"description": "Momentum-based equity strategy"
}'{
"id": "ap-7f2e4a91-b3c8-4d1e-a5f6-789012345678",
"name": "momentum-strategy-v1",
"description": "Momentum-based equity strategy",
"status": "Active",
"createdAt": "2026-04-04T12:05:00Z",
"delegatedScopes": ["trade:demo", "portfolio:read"],
"tokenId": "tok-abc123def456"
}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.