## Get current user `client.users.retrieveCurrent(RequestOptionsoptions?): UserRetrieveCurrentResponse` **get** `/v1/users/me` Returns the identity associated with the authenticated API token. ### Returns - `UserRetrieveCurrentResponse` - `name: string` Display name of the API token. ### Example ```typescript import Chamelaion from 'chamelaion'; const client = new Chamelaion({ apiKey: process.env['CHAMELAION_API_KEY'], // This is the default and can be omitted }); const response = await client.users.retrieveCurrent(); console.log(response.name); ``` #### Response ```json { "name": "My API Token" } ```