GET
https://api.xmrig.com/1/latest_release/:project
Get information about the latest stable release for a specific project. Possible values for the project
parameter: xmrig , cuda and proxy
GET
https://api.xmrig.com/1/latest_release
Alias to https://api.xmrig.com/1/latest_release/xmrig
.
Field | Type | Description |
---|---|---|
version_gt | String | Return results only if current version greater than specified, useful for check updates. |
id | String | Return results only if the asset with specified id is found, also filter assets array to contain only one requested asset. |
Object with information about latest release.
{
"url": "https://github.com/xmrig/xmrig/releases/tag/v6.3.3",
"version": "6.3.3",
"ts": 1598627267000,
"assets": [
...
]
}
Field | Type | Description |
---|---|---|
url | String | Url to a release page on GitHub. |
version | String | Release version. |
ts | Timestamp | Release timestamp. |
assets | Array | Array of asset objects, explained below. |
Object represents a single download item, one release contains multiple asset objects as an array.
{
"os": "windows-x64",
"id": "msvc-win64",
"name": "xmrig-6.3.3-msvc-win64.zip",
"url": "https://github.com/xmrig/xmrig/releases/download/v6.3.3/xmrig-6.3.3-msvc-win64.zip",
"size": 1931716,
"ts": 1598627243000,
"hash": "98f370f87b75e9d2718837c91746a0e6e04d292f4a348bc3fc457c5abdbc94e5"
}
Field | Type | Description |
---|---|---|
os | String | OS code combined with CPU arch. |
id | String | Asset ID retrieved from file name. |
name | String | Asset name. |
url | String | Download url. |
size | Number | Asset size in bytes. |
ts | Timestamp | Asset timestamp. |
hash | String | SHA256 hash of asset file. |
cuda | String | CUDA version, only available for cuda project. |