Skip to content
For LLMsView as Markdown·

Bitbucket

Manage repositories, pull requests, and pipelines on Bitbucket Cloud.

DetailValue
CategoryDev Tools
Base URLhttps://api.bitbucket.org/2.0
AuthenticationBearer Token
Endpoints5
Connector keybitbucket

Using Bitbucket in a workflow

  1. Go to Connections and click New Connection.
  2. Pick Bitbucket from the marketplace.
  3. Enter your credentials (see Authentication above for what's expected).
  4. In a workflow, drop an API Call node and select this connection.
  5. Pick the operation you need from the Operation dropdown — the full list is below.

Available endpoints

EndpointSummary
GET /repositories/{workspace}List repositories in a workspace
GET /repositories/{workspace}/{repo_slug}Get a repository
GET /repositories/{workspace}/{repo_slug}/pullrequestsList pull requests
GET /repositories/{workspace}/{repo_slug}/pipelinesList pipelines
GET /repositories/{workspace}/{repo_slug}/commitsList commits

Each endpoint is documented in full below. Use the outline on the right to jump to one.

GET /repositories/{workspace}

List repositories in a workspace

DetailValue
Operation IDscm.listRepos
MethodGET
Path/repositories/{workspace}

Parameters

NameLocationTypeRequired
workspacepathstringYes

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your Bitbucket connection from the Connection dropdown.
  3. In the Operation dropdown, select scm.listRepos.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

Required fields are marked — fill them or the call will fail at runtime.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Bitbucket API reference.

GET /repositories/{workspace}/{repo_slug}

Get a repository

DetailValue
Operation IDscm.getRepo
MethodGET
Path/repositories/{workspace}/{repo_slug}

Parameters

NameLocationTypeRequired
workspacepathstringYes
repo_slugpathstringYes

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your Bitbucket connection from the Connection dropdown.
  3. In the Operation dropdown, select scm.getRepo.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

Required fields are marked — fill them or the call will fail at runtime.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Bitbucket API reference.

GET /repositories/{workspace}/{repo_slug}/pullrequests

List pull requests

DetailValue
Operation IDscm.listPRs
MethodGET
Path/repositories/{workspace}/{repo_slug}/pullrequests

Parameters

NameLocationTypeRequired
workspacepathstringYes
repo_slugpathstringYes

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your Bitbucket connection from the Connection dropdown.
  3. In the Operation dropdown, select scm.listPRs.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

Required fields are marked — fill them or the call will fail at runtime.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Bitbucket API reference.

GET /repositories/{workspace}/{repo_slug}/pipelines

List pipelines

DetailValue
Operation IDscm.listPipelines
MethodGET
Path/repositories/{workspace}/{repo_slug}/pipelines

Parameters

NameLocationTypeRequired
workspacepathstringYes
repo_slugpathstringYes

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your Bitbucket connection from the Connection dropdown.
  3. In the Operation dropdown, select scm.listPipelines.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

Required fields are marked — fill them or the call will fail at runtime.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Bitbucket API reference.

GET /repositories/{workspace}/{repo_slug}/commits

List commits

DetailValue
Operation IDscm.listCommits
MethodGET
Path/repositories/{workspace}/{repo_slug}/commits

Parameters

NameLocationTypeRequired
workspacepathstringYes
repo_slugpathstringYes

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your Bitbucket connection from the Connection dropdown.
  3. In the Operation dropdown, select scm.listCommits.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

Required fields are marked — fill them or the call will fail at runtime.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Bitbucket API reference.