Releases API
Releases API
The public API provides version information compatible with the Tauri updater format.
Get Latest Release
GET /api/v1/releases/latest
Returns the latest published release.
Query Parameters
| Parameter | Type | Description |
|---|---|---|
platform |
string | Filter by platform: windows, macos, linux |
channel |
string | stable (default) or beta |
Response
{
"version": "3.54.4",
"notes": "Bug fixes and performance improvements",
"pub_date": "2024-05-03T00:00:00Z",
"platforms": {
"darwin-x86_64": {
"signature": "sha256:abc123...",
"url": "https://myno.io.vn/releases/download/1"
},
"windows-x86_64": {
"signature": "sha256:def456...",
"url": "https://myno.io.vn/releases/download/2"
}
}
}
Download Asset
GET /releases/download/{id}
Increments the download counter and redirects to the file or streams it.