Web API
SonarCloud provides a web API to access its functionalities from applications.
The web services composing the web API are documented within SonarCloud, through the URL https://sonarcloud.io/web_api. You can also access the web API documentation from the top bar in Cloud by selecting the help button:
Authenticating to the Web API
Administrative web services are secured and require the user to have specific permissions.
To authenticate to the Web API, we recommend that you use the bearer authentication scheme. With this scheme, a SonarCloud token is used:
- A token is generated in SonarCloud UI.
See Managing your tokens. - The token is provided through the
Authorization: Bearer <myToken>
header.
See Sample API request below.
Sending an API request
To make a request, you need to find the HTTP method and the right path for the operation that you want to use.
It’s highly recommended to use form data parameters when making POST requests to the Web API. If you use URI query parameters instead then these parameters won’t be securely passed to the endpoint.
Sample API request
If, for example, you want to use the Web API to extract measures, you can make a “GET MEASURES” call to the /api/measures
endpoint in order to extract measures of a given metric for a given project. For this example, a possible request and response are shown below.
Request
Response
Taking into account the API rate limiting
Some of SonarCloud's APIs are rate-limited in order to ensure that we can continue to deliver the service smoothly and with optimum performance. In most cases, you should take this into account when automating tasks and processes by using the SonarCloud Web API.
Your API calls will fail with a 429 status code when the rate limit has been reached. If this happens, wait a few minutes before retrying the operation.
Was this page helpful?