> ## 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.

# Change Aria Compute ROUTER Password

> POST /v1/router/auth/password allows authenticated users to change their own password by providing their current and new passwords.

Update your Aria Compute ROUTER account password. You must provide your current password to authorize the change. This endpoint is available to any authenticated user.

## Endpoint

```http theme={null}
POST /v1/router/auth/password
```

## Authentication

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

## Request Body

<ParamField body="current_password" type="string" required>
  Your existing password.
</ParamField>

<ParamField body="new_password" type="string" required>
  The new password to set on the account.
</ParamField>

## Response

A successful password change returns `200 OK` with no response body.

<RequestExample>
  ```bash cURL theme={null}
  curl -X POST https://router.example.com:8080/v1/router/auth/password \
    -H "Content-Type: application/json" \
    -H "Authorization: Bearer <api-key>" \
    -d '{"current_password":"secret123","new_password":"newsecret456"}'
  ```
</RequestExample>

<ResponseExample>
  ```text 200 theme={null}
  (No response body)
  ```
</ResponseExample>


## Related topics

- [Update Aria Compute ROUTER Email Address](/api-reference/router/auth/email.md)
- [Log In to Aria Compute ROUTER Session](/api-reference/router/auth/login.md)
- [Update Aria Compute ROUTER Users (Admin)](/api-reference/router/users/update.md)
- [Aria Compute ROUTER: OpenAI-compatible inference gateway](/api-reference/router/introduction.md)
- [Authenticate with Aria Compute ROUTER](/api-reference/router/authentication.md)
