The Atlassian Community Forums are currently in read-only mode. We will be relaunching on a new platform on September 22 (read more here). We apologize for the extended downtime. For concerns or questions, please email communitymanagers@atlassian.com. See you on the other side, on the new Atlassian Community Forums! :)

×

Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

Trying to get a project progress percentage from API

Ankit Patel
Contributor
February 10, 2025

I looked up documentation but unable to find best way to get progress percentage by JIRA API to be integrated with KeyedIn PPM. 

 

We are looking to Sync 2 scenarios, At project level or parent level.

For parent level we have populated fields to track percent complete, completed issues and total issues. But not sure how we can do it at project level... 

1 answer

Comments for this post are closed

Community moderators have prevented the ability to post new answers.

0 votes
Mercy
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Champions.
December 10, 2025

Jira Cloud doesn’t expose a native “project progress” percentage field through the REST API because progress is always derived from issue data rather than stored at the project level. To calculate it, your integration needs to query the issues in a project and compute the ratio of completed issues to total issues. You can use the Search API endpoint with a JQL like `project = KEY AND issuetype != Sub-task` to get total issues, and another call with `project = KEY AND statusCategory = Done` to count completed ones.