Who is signed in and which account context applies
Resolve the authenticated user's identity and account CIDs with a single call — the foundation for scoping portfolio and trading flows to the correct user and account in your integration.
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/me \
-H "x-api-key: $ETORO_API_KEY" \
-H "x-user-key: $ETORO_USER_KEY" \
-H "x-request-id: $(uuidgen)"{
"userId": 12345678,
"username": "demobuilder",
"accountCids": [
{ "cid": 87654321, "type": "Demo", "currency": "USD" },
{ "cid": 87654322, "type": "Real", "currency": "USD" }
],
"email": "builder@example.com",
"country": "US"
}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.