Get Project Versions

GET {{baseUrl}}/rest/api/3/project/:projectIdOrKey/versions?expand=<string>

Returns all versions in a project. The response is not paginated. Use Get project versions paginated if you want to get the versions in a project with pagination.

This operation can be accessed anonymously.

Permissions required: Browse Projects project permission for the project.

Request Params

KeyDatatypeRequiredDescription
expandstringUse expand to include additional information in the response. This parameter accepts operations, which returns actions that can be performed on the version.

RESPONSES

status: OK

[{&quot;self&quot;:&quot;https://your-domain.atlassian.net/rest/api/3/version/10000&quot;,&quot;id&quot;:&quot;10000&quot;,&quot;description&quot;:&quot;An excellent version&quot;,&quot;name&quot;:&quot;New Version 1&quot;,&quot;archived&quot;:false,&quot;released&quot;:true,&quot;releaseDate&quot;:&quot;2010-07-06&quot;,&quot;overdue&quot;:true,&quot;userReleaseDate&quot;:&quot;6/Jul/2010&quot;,&quot;projectId&quot;:10000},{&quot;self&quot;:&quot;https://your-domain.atlassian.net/rest/api/3/version/10010&quot;,&quot;id&quot;:&quot;10010&quot;,&quot;description&quot;:&quot;Minor Bugfix version&quot;,&quot;name&quot;:&quot;Next Version&quot;,&quot;archived&quot;:false,&quot;released&quot;:false,&quot;overdue&quot;:false,&quot;projectId&quot;:10000,&quot;issuesStatusForFixVersion&quot;:{&quot;unmapped&quot;:0,&quot;toDo&quot;:10,&quot;inProgress&quot;:20,&quot;done&quot;:100}}]