Arduino Latest Version

Get the latest version of Arduino IDE programmatically!

View on GitHub

Arduino Latest Version 🛎

Ever wonder which is the latest version of Arduino IDE currently released?
Now you can know it, programmatically!

Get the latest version number

You can know witch is the latest version of arduino available by hitting this URL:

https://arduino-cli.github.io/arduino-latest/VERSION

Usage

curl

$ curl https://arduino-cli.github.io/arduino-latest/VERSION

node

const request = require('request');
const latest_endpoint = 'https://arduino-cli.github.io/arduino-latest/VERSION';

request(latest_endpoint, function (error, response, body) {
   if (!error && response.statusCode == 200) {
       console.log(body) // Shows the version on the console.
   }
});

Arduino mirrors

Binaries of the Arduino IDE can be downloaded from the mirrors below:

OS Arch URI
win32 x64 https://downloads.arduino.cc/arduino-VERSION-windows.zip
darwin x64 https://downloads.arduino.cc/arduino-VERSION-macosx.zip
linux x32 https://downloads.arduino.cc/arduino-VERSION-linux32.tar.xz
linux x64 https://downloads.arduino.cc/arduino-VERSION-linux64.tar.xz
linux arm https://downloads.arduino.cc/arduino-VERSION-linuxarm.tar.xz


Arduino download page

The latest version available can be verified here.

Authors

See also the list of contributors who participated in this project.

License

This project is licensed under the MIT License - see the https://github.com/arduino-cli/arduino-latest/blob/master/LICENSE file for details.