Is there a way using the BitBucket API to get a list of all commiters/contributors to a repository?
I know I can user git-shortlog for this purpose but would rather make an API call if possible.
No, we do not currently have that kind of data indexed, or available through the API.
$ git log --format="%ae" | sort | uniq -c
Then you can parse through the commits one-by-one for contributors