WGET
Download oneAPI for AMD GPU using cURL/WGET or other tools.
We provide an easy-to-use API service that you can use to download packages using cURL or WGET.
Download URL
https://developer.codeplay.com/api/v1/products/download?product=oneapi&variant=amd&filters[]=linux
Tips
- This service will download one single package. If multiple packages are returned based on your URL, the packages will be sorted alphabetically and the first result returned
- The more filters you use, the most accurate the download will be
-
Use
&filter[]=STRING
to filter the download by it's file name- Use as many
&filter[]=STRING
as you like - Multiple
&filter[]=STRING
are chained as logical AND - The download file name will ensure each value of
STRING
is found within the file name
- Use as many
- This service is rate limited. If you hit the limit, you will have to wait 24 hours before using the service again
Examples
curl -LOJ "https://developer.codeplay.com/api/v1/products/download?product=oneapi&variant=amd"
curl -LOJ "https://developer.codeplay.com/api/v1/products/download?product=oneapi&variant=amd&filters[]=linux"
curl -LOJ "https://developer.codeplay.com/api/v1/products/download?product=oneapi&variant=amd&filters[]=2025.1.0"
curl -LOJ "https://developer.codeplay.com/api/v1/products/download?product=oneapi&variant=amd&filters[]=linux&filters[]=5.4"