Latest release

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.

Query parameters

FieldTypeDescription
version_gtStringReturn results only if current version greater than specified, useful for check updates.
idStringReturn results only if the asset with specified id is found, also filter assets array to contain only one requested asset.

Release object

Object with information about latest release.

{
  "url": "https://github.com/xmrig/xmrig/releases/tag/v6.3.3",
  "version": "6.3.3",
  "ts": 1598627267000,
  "assets": [
	...
  ]
}
FieldTypeDescription
urlStringUrl to a release page on GitHub.
versionStringRelease version.
tsTimestampRelease timestamp.
assetsArrayArray of asset objects, explained below.

Asset object

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"
}
FieldTypeDescription
osStringOS code combined with CPU arch.
idStringAsset ID retrieved from file name.
nameStringAsset name.
urlStringDownload url.
sizeNumberAsset size in bytes.
tsTimestampAsset timestamp.
hashStringSHA256 hash of asset file.
cudaStringCUDA version, only available for cuda project.