> ## Documentation Index
> Fetch the complete documentation index at: https://docs.ariacompute.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Current Aria Compute ROUTER User

> GET /v1/router/auth/me returns the currently authenticated user profile including id, username, email, role, and disabled status.

Retrieve the profile of the currently authenticated user. This endpoint is useful for verifying your session or API key and inspecting your role and account status.

## Endpoint

```http theme={null}
GET /v1/router/auth/me
```

## Authentication

Send the session cookie obtained from login, or include `Authorization: Bearer <api-key>`.

## Response

<ResponseField name="id" type="string">
  Unique identifier of the user.
</ResponseField>

<ResponseField name="username" type="string">
  Username of the account.
</ResponseField>

<ResponseField name="email" type="string | null">
  Email address if set, otherwise null.
</ResponseField>

<ResponseField name="role" type="string">
  User role, such as `"user"` or `"admin"`.
</ResponseField>

<ResponseField name="disabled" type="boolean">
  Whether the account is currently disabled.
</ResponseField>

<RequestExample>
  ```bash cURL theme={null}
  curl https://router.example.com:8080/v1/router/auth/me \
    -H "Authorization: Bearer <api-key>"
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  {
    "id": "user-abc123",
    "username": "alice",
    "email": "alice@example.com",
    "role": "user",
    "disabled": false
  }
  ```
</ResponseExample>


## Related topics

- [List Users on Aria Compute ROUTER](/api-reference/router/users/list.md)
- [Update Aria Compute ROUTER Users (Admin)](/api-reference/router/users/update.md)
- [Change Aria Compute ROUTER Password](/api-reference/router/auth/password.md)
- [Log Out of Aria Compute ROUTER Session](/api-reference/router/auth/logout.md)
- [OAuth and Serve Account Linking for Router](/api-reference/router/auth/oauth.md)
