Endpoints
All four are unauthenticated. The international site pulls from GitHub (
ariacompute/*) and the China site pulls from a Gitee mirror.
Example
assets array and download it directly.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Public endpoints that return the newest aria-engine, aria-router, aria-agent, and aria-memo release assets from GitHub or Gitee.
| Endpoint | Assets |
|---|---|
GET /api/download/engine-latest | aria-engine + libaria-engine_ffi |
GET /api/download/router-latest | aria-router + libaria-router_ffi |
GET /api/download/agent-latest | aria-agent |
GET /api/download/memo-latest | aria-memo |
ariacompute/*) and the China site pulls from a Gitee mirror.
curl -s https://ariacompute.com/api/download/engine-latest | jq .
{
"tag_name": "v0.7.2",
"name": "Aria Engine v0.7.2",
"prerelease": false,
"published_at": "2026-09-01T12:00:00Z",
"assets": [
{
"name": "aria-engine-linux-x86_64.tar.gz",
"url": "https://github.com/ariacompute/engine/releases/download/v0.7.2/...",
"size": 84210341,
"content_type": "application/gzip"
},
{
"name": "libaria-engine_ffi-linux-x86_64.so",
"url": "https://github.com/ariacompute/engine/releases/download/v0.7.2/...",
"size": 12345678,
"content_type": "application/octet-stream"
}
]
}
assets array and download it directly.
Was this page helpful?