> ## 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/agent-latest — latest aria-agent release

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

Return the newest `aria-agent` release: version, publish date, and every uploaded asset. The international site pulls from GitHub `ariacompute/agent`; the China site pulls from the Gitee mirror.

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

## Response

Same shape as [`GET /api/download/engine-latest`](/api-reference/downloads/engine-latest).

## Example

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

```json theme={null}
{
  "tag_name": "v0.3.0",
  "name": "Aria Agent v0.3.0",
  "prerelease": false,
  "published_at": "2026-09-10T09:00:00Z",
  "assets": [
    {
      "name": "aria-agent-linux-x86_64.tar.gz",
      "url": "https://github.com/ariacompute/agent/releases/download/v0.3.0/aria-agent-linux-x86_64.tar.gz",
      "size": 21000000,
      "content_type": "application/gzip"
    }
  ]
}
```


## Related topics

- [Latest engine, router, agent, and memo releases](/resources/downloads.md)
- [GET /api/download/memo-latest — latest aria-memo release](/api-reference/downloads/memo-latest.md)
- [GET /api/download/engine-latest — latest aria-engine release](/api-reference/downloads/engine-latest.md)
- [GET /api/download/router-latest — latest aria-router release](/api-reference/downloads/router-latest.md)
- [Aria Compute SDKs and client libraries](/sdks/overview.md)
