> ## 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 /api/download/router-latest — latest aria-router release

> Return the newest aria-router release metadata and download URLs. GitHub-backed on the international site, Gitee-backed on the China site.

Return the newest `aria-router` release. Assets typically include the `aria-router` binary and the `libaria-router_ffi` shared library across supported platforms.

**Method:** `GET` **Path:** `/api/download/router-latest` **Auth:** None

## Response

Same shape as [`GET /api/download/engine-latest`](/api-reference/downloads/engine-latest): `tag_name`, `name`, `prerelease`, `published_at`, and an `assets` array with `name`, `url`, `size`, and `content_type`.

## Example

```bash theme={null}
curl -s https://ariacompute.com/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"
    }
  ]
}
```


## Related topics

- [Latest engine, router, agent, and memo releases](/resources/downloads.md)
- [GET /api/download/engine-latest — latest aria-engine release](/api-reference/downloads/engine-latest.md)
- [GET /api/download/agent-latest — latest aria-agent release](/api-reference/downloads/agent-latest.md)
- [GET /api/download/memo-latest — latest aria-memo release](/api-reference/downloads/memo-latest.md)
- [aria-router runtime and FFI](/sdks/router-runtime.md)
