## Get current user `users.retrieve_current() -> UserRetrieveCurrentResponse` **get** `/v1/users/me` Returns the identity associated with the authenticated API token. ### Returns - `class UserRetrieveCurrentResponse: …` - `name: str` Display name of the API token. ### Example ```python import os from chamelaion import Chamelaion client = Chamelaion( api_key=os.environ.get("CHAMELAION_API_KEY"), # This is the default and can be omitted ) response = client.users.retrieve_current() print(response.name) ``` #### Response ```json { "name": "My API Token" } ```