# Users ## Get current user **get** `/v1/users/me` Returns the identity associated with the authenticated API token. ### Returns - `name: string` Display name of the API token. ### Example ```http curl https://api.chamelaion.com/api/v1/users/me \ -H "x-api-key: $CHAMELAION_API_KEY" ``` #### Response ```json { "name": "My API Token" } ```