---
title: "Get authenticated user profile"
method: GET
path: "/api/v1/me"
tags: ["Identity"]
---

# Get authenticated user profile

`GET /api/v1/me`

**Rate limit:** 60 requests per 60 seconds. This is the **default shared quota** — it is shared with every other endpoint that has no dedicated limit, so requests across those endpoints all draw from the same budget.

---

Returns the profile of the currently authenticated user, including account identifiers (GCID, real and demo CIDs), profile fields from Scope Data API (username, name, player level, gender, language, date of birth, avatar URL), and the OAuth scopes granted to the current access token.

## Headers

- `x-request-id` string, uuid, required
- `x-api-key` string, password, required
- `x-user-key` string, password, required

## Response `200`

OK

- MeResponse — Profile of the authenticated user across eToro account types, including granted OAuth scopes.
  - `gcid` integer, required — Global Customer ID - the unique identifier for the user across all eToro systems.
  - `realCid` integer, required — Real account Customer ID - the identifier for the user's real trading account.
  - `demoCid` integer, required — Demo account Customer ID - the identifier for the user's virtual/demo trading account.
  - `username` string, required — The user's unique username.
  - `firstName` string, nullable — The user's first name.
  - `middleName` string, nullable — The user's middle name.
  - `lastName` string, nullable — The user's last name.
  - `playerLevel` integer, required — Player level. Possible values: 1 (Bronze), 2 (Platinum), 3 (Gold), 4 (Internal), 5 (Silver), 6 (PlatinumPlus), 7 (Diamond).
  - `gender` integer, required — Gender. Possible values: 0 (Unknown), 1 (Male), 2 (Female).
  - `language` integer, required — Language ID (e.g. 1 = English, 2 = German).
  - `dateOfBirth` string, required — Date of birth.
  - `avatarUrl` string, nullable — Absolute URL of the user's profile avatar image.
  - `scopes` string[], required — OAuth scopes granted to the authenticated token.

## Other responses

- `401` — Unauthorized - Missing or invalid authentication credentials
- `403` — Forbidden - Insufficient permissions
- `429` — Too Many Requests — the shared rate limit (60 requests / 60s) was exceeded.

---

[API](https://skmtc.net/etoro/apis/etoro-api.md) · [All operations](https://skmtc.net/etoro/apis/etoro-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/etoro/etoro-api/revisions/69c1fb266c35/schema)
