Getting Started

The root url to the REST API is: https://api.qualcomm.com/softwarecenter/v1

For all API calls, provide your API KEY on the Authorization header and also include header "X-QCOM-TokenType: apikey". Sample curl command to call one API:

Windows curl command

curl --location "https://api.qualcomm.com/softwarecenter/v1/tools/ab2423ae-7831-11ee-b4ae-026b10d3716b/releases" ^
--header "X-QCOM-TokenType: apikey" ^
--header "Authorization: YOUR_APIKEY_HERE"

OSX/Linux curl command

curl --location 'https://api.qualcomm.com/softwarecenter/v1/tools/ab2423ae-7831-11ee-b4ae-026b10d3716b/releases' \
--header 'X-QCOM-TokenType: apikey' \
--header 'Authorization: YOUR_APIKEY_HERE'

Replace YOUR_APIKEY_HERE with your key

Additional references:

  • Getting Access - for how to get an API Key if you don't have one.
  • Try It Out - for list of all APIs including parameters, request and response formats.