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

# GET /api/download/router-latest — 最新的 aria-router 发布

> 返回最新的 aria-router 发布元数据与下载 URL。国际站基于 GitHub，中国站基于 Gitee。

返回最新的 `aria-router` 发布。资源通常包含跨受支持平台的 `aria-router` 二进制与 `libaria-router_ffi` 共享库。

**方法：** `GET` **路径：** `/api/download/router-latest` **认证：** 无

## 响应

与 [`GET /api/download/engine-latest`](/api-reference/downloads/engine-latest) 结构相同：`tag_name`、`name`、`prerelease`、`published_at`，以及一个含 `name`、`url`、`size`、`content_type` 的 `assets` 数组。

## 示例

```bash theme={null}
curl -s https://ariacompute.cn/api/download/router-latest | jq .
```

```json theme={null}
{
  "tag_name": "v0.5.1",
  "name": "Aria Router v0.5.1",
  "prerelease": false,
  "published_at": "2026-08-20T12:00:00Z",
  "assets": [
    {
      "name": "aria-router-linux-x86_64.tar.gz",
      "url": "https://github.com/ariacompute/router/releases/download/v0.5.1/aria-router-linux-x86_64.tar.gz",
      "size": 42000000,
      "content_type": "application/gzip"
    }
  ]
}
```
