| Description | Get a list of resources |
URL | /api/resources |
| HTTP Method | GET |
| Response Formats | json | xml |
Security | Requires User role on resource |
Examples
| Use Case | Example Request |
|---|---|
| Get all the projects | |
| For each project, get lines of code and code coverage measures | |
| Get lines of code and code coverage measures for project org.codehaus.sonar:sonar | GET http://nemo.sonarsource.org/api/resources?resource=org.codehaus.sonar:sonar&metrics=ncloc,coverage |
| Get all the resources included in project org.codehaus.sonar:sonar: packages, files, etc. | GET http://nemo.sonarsource.org/api/resources?resource=org.codehaus.sonar:sonar&depth=-1 |
| Get all the files included in project org.codehaus.sonar:sonar |
|
| Hotspot of the ten files with the worst code coverage for project org.codehaus.sonar:sonar | |
| Get lines of code measure of direct children of org.codehaus.sonar:sonar |
|
| Get code coverage on new code for project org.codehaus.sonar:sonar for all differential periods. | GET http://nemo.sonarsource.org/api/resources?resource=org.codehaus.sonar:sonar&metrics=new_coverage&includetrends=true |
Response Format
| Number of results Note that the number of results is limited to 500. See SONAR-2920. |
Parameters
Parameter | Description | Required | Default Value | Example Values |
|---|---|---|---|---|
resource | id or key of the resource | No | None | org.codehaus.sonar:sonar |
metrics | Comma-separated list of metric keys/ids. | No | None | lines,blocker_violations |
depth | Used only when resource is set.
| No | 0 | -1 |
scopes | Comma-separated list of scopes:
| No | None | PRJ,DIR |
qualifiers | Comma-separated list of qualifiers:
| No | None | TRK,BRC |
| languages | Comma-separated list of language keys. | No | None | java,js |
verbose | Add some data to response. | No | false | true |
limit | Limit the number of results. Only used if one metric, and only one, is set. | No | None | 10 |
includetrends | Include trends and period variations in response: add <trend> (1 if better, else worse), <var> (1 if measure value increases) and nodes <p*> for period variations. | No | false | true |
includealerts | Include alerts data: add nodes <alert> (ERROR, WARN, OK) and <alert_text> | No | false | true |
rules | Filter on rules: setting it to true will return rules id and rule name for measure having such info (such as 'blocker_violations', 'critical_violations', ..., 'new_blocker_violations', ...) | No | false | true |
rule_priorities | Filter on rule priority: setting it to true or to a list of priorities (BLOCKER, CRITICAL, MAJOR, MINOR, INFO) will return measures having such info (such as 'blocker_violations', 'critical_violations', ..., 'new_blocker_violations', ...). | No | false | BLOCKER,CRITICAL |
| format | Response format can be set through:
If nothing is set, json is used. | No | None | json |

