Bitbucket Cloud API
Bitbucket Cloud API — free tier with API key
Bitbucket Cloud API exposes a free-tier JSON API. Register for an API key if required; we verified a public or demo endpoint.
GET https://api.bitbucket.org/2.0/repositories/evzijst/dogslow/filehistory/master/README.rst
{
"values": [
{
"path": "README.rst",
"commit": {
"hash": "eeffe4f3f0f9a87adf60e91af2c55b33518719ab",
"links": {
"self": {
"href": "https://api.bitbucket.org/2.0/repositories/evzijst/dogslow/commit/eeffe4f3f0f9a87adf60e91af2c55b33518719ab"
},
"html": {
"href": "https://bitbucket.org/evzijst/dogslow/commits/eeffe4f3f0f9a87adf60e91af2c55b33518719ab"
}
},
"type": "commit"
},
"type": "commit_file",
"attributes": [],
"size": 8548,
"links": {
"self": {
"href": "https://api.bitbucket.org/2.0/repositories/evzijst/dogslow/src/eeffe4f3f0f9a87adf60e91af2c55b33518719ab/README.rst"
},
"meta": {
"href": "https://api.bitbucket.org/2.0/repositories/evzijst/dogslow/src/eeffe4f3f0f9a87adf60e91af2c55b33518719ab/README.rst?format=meta"
},
"history": {
"href": "https://api.bitbucket.org/2.0/repositories/evzijst/dogslow/filehistory/eeffe4f3f0f9a87adf60e91af2c55b33518719ab/README.rst"
}
}
},
{
"path": "README.rst",
"commit": {
"hash": "7f3cf028bf5f544ec015208a5c0d255a62a6b0be",
"links": {
"self": {
"href": "https://api.bitbucket.org/2.0/repositories/evzijst/dogslow/commit/7f3cf028bf5f544ec015208a5c0d255a62a6b0be"
},
"html": {
"href": "https://bitbucket.org/evzijst/dogslow/commits/7f3cf028bf5f544ec015208a5c0d255a62a6b0be"
}
},
"type": "commit"
},
"type": "commit_file",
"attributes": [],
"size": 8407,
"links": {
"self": {
"href": "https://api.bitbucket.org/2.0/repositories/evzijst/dogslow/src/7f3cf028bf5f544ec015208a5c0d255a62a6b0be/README.rst"
},
"meta": {
"href": "https://api.bitbucket.org/2.0/repositories/evzijst/dogslow/src/7f3cf028bf5f544ec015208a5c0d255a62a6b0be/README.rst?format=meta"
},
"history": {
"href": "https://api.bitbucket.org/2.0/repositories/evzijst/dogslow/filehistory/7f3cf028bf5f544ec015208a5c0d255a62a6b0be/README.rst"
}
}
}
],
"pagelen": 50,
"page": 1
}curl "https://api.bitbucket.org/2.0/repositories/evzijst/dogslow/filehistory/master/README.rst"const res = await fetch("https://api.bitbucket.org/2.0/repositories/evzijst/dogslow/filehistory/master/README.rst");
const data = await res.json();
console.log(data);import requests
res = requests.get("https://api.bitbucket.org/2.0/repositories/evzijst/dogslow/filehistory/master/README.rst")
print(res.json())/2.0/repositories/evzijst/dogslow/filehistory/master/README.rstPROBEDBitbucket Cloud API — free tier with API key
/2.02 0 — documented GET route.
/2.0/12.0 details by ID (example: 1).
/2.0?limit=102 0 — documented GET route.
/2.0/search?q=testSearch by query parameters.
/addon/{addon_key}/client-keyGet the client key of a Connect addon
We probe a documented GET and expect 2xx JSON — full uptime and health score. Export includes every documented route below.
Stable. No schema drift observed since monitoring began — the response shape has not changed under our checks.
Bitbucket Cloud API: common questions
Is Bitbucket Cloud API free to use?
Yes — Bitbucket Cloud API is a free open data API. Free tier: Free tier — API key required. Whether the free tier allows commercial use is unclear — check the provider docs.
Does Bitbucket Cloud API need an API key?
Yes — Bitbucket Cloud API needs a free API key, which you pass on each request. Rate limits: 60, 60;w=3600 req/window · 59 remaining · resets 2635.
Can I call Bitbucket Cloud API from the browser?
Yes — Bitbucket Cloud API returns CORS headers over HTTPS, so front-end code can fetch it directly with no backend proxy. Use the fetch snippet on this page, or hit "Run live" to try it now.
Is Bitbucket Cloud API up right now?
As of our last scheduled check, Bitbucket Cloud API is healthy with 100% uptime over 90 days and a 780 ms median response. We re-probe it every sweep — the status badge and uptime chart above always show the latest.