## Get User Details

`$ nirvana user get`

**get** `/v1/user`

Get details about an authenticated user

### Returns

- `user: object { id, email, first_name, last_name }`

  User details.

  - `id: string`

    Unique identifier for the User.

  - `email: string`

    Email address of the user.

  - `first_name: string`

    First name of the user.

  - `last_name: string`

    Last name of the user.

### Example

```cli
nirvana user get \
  --api-key 'My API Key'
```

#### Response

```json
{
  "id": "123e4567-e89b-12d3-a456-426614174000",
  "email": "satoshi@nirvanalabs.io",
  "first_name": "Satoshi",
  "last_name": "Nakamoto"
}
```
