## Get current user `client.Users.GetCurrent(ctx) (*UserGetCurrentResponse, error)` **get** `/v1/users/me` Returns the identity associated with the authenticated API token. ### Returns - `type UserGetCurrentResponse struct{…}` - `Name string` Display name of the API token. ### Example ```go package main import ( "context" "fmt" "github.com/chamelaion/chamelaion-go" "github.com/chamelaion/chamelaion-go/option" ) func main() { client := chamelaion.NewClient( option.WithAPIKey("My API Key"), ) response, err := client.Users.GetCurrent(context.TODO()) if err != nil { panic(err.Error()) } fmt.Printf("%+v\n", response.Name) } ``` #### Response ```json { "name": "My API Token" } ```