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.
We probe a documented GET and expect 2xx JSON — full uptime and health score. Open provider docs ↗
On our probe schedule. Uptime charts appear after the first check lands.
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.
Not tracked yet. Shape-change history starts once this API joins our probe schedule.
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: Unpublished.
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?
Bitbucket Cloud API is catalogued but not yet on our probe schedule, so we don't publish a live status for it. Check the provider's own status page or docs for its current state.