Bitbucket Rest API - keshavbaweja-git/guides GitHub Wiki
https://<bitbucket_server>/plugins/servlet/archive/projects/<bitbucket_project>/repos/<repo_name>?at=<commit_id>
https://<bitbucket_server>/plugins/servlet/archive/projects/<bitbucket_project>/repos/<repo_name>?at=refs/heads/<branch_name>
https://<bitbucket_server>/plugins/servlet/archive/projects/<bitbucket_project>/repos/<repo_name>?at=refs/tags/<tag_name>
https://<bitbucket_server>/rest/api/1.0/projects/<bitbucket_project>/repos/<repo_name>/commits/<branch_name>
if <branch_name> includes a "/", use below
https://<bitbucket_server>/rest/api/1.0/projects/<bitbucket_project>/repos/<repo_name>/commits?until=<branch_name>&limit=0&start=0
https://<bitbucket_server>/rest/api/1.0/projects/<bitbucket_project>/repos/<repo_name>/commits/<tag_name>
https://<bitbucket_server>/rest/api/1.0/projects/<bitbucket_project>/repos/<repo_name>/branches
https://<bitbucket_server>/rest/api/1.0/projects/<bitbucket_project>/repos/<repo_name>/commits?until=<commit_id>
https://<bitbucket_server>/rest/api/1.0/projects/<bitbucket_project>/repos/<repo_name>/commits?until=<tag_name>