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

# 退出咏唱引擎 ROUTER 会话

> POST /v1/router/auth/logout 清除会话 Cookie 并结束当前的咏唱引擎 ROUTER 认证会话。

通过调用退出接口结束你的咏唱引擎 ROUTER 会话。这会在服务端清除会话 Cookie，并使当前的认证上下文失效。

## 接口

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

## 认证

发送从登录获取的会话 Cookie，或携带 `Authorization: Bearer <api-key>`。

## 响应

退出成功返回 `200 OK`，无响应体。

<RequestExample>
  ```bash cURL theme={null}
  curl -X POST https://router.example.com:8080/v1/router/auth/logout \
    -b cookies.txt
  ```
</RequestExample>

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