Bitwarden

Open source password manager

Go to site
Explore
/
Apps
/
Bitwarden

Bitwarden API Integrations

Build and run workflows using the Bitwarden API. Use 1000s of source-available triggers and actions across 1000+ apps. Or write custom code to integrate any app or API in seconds.

Overview

Bitwarden is a secure and free password manager that can be used to store passwords, credit card information, and other sensitive data. With the Bitwarden API, developers can create applications that allow users to securely store and access their data.

Some examples of what can be built using the Bitwarden API include:

  • A password manager that allows users to securely store and access their passwords
  • A credit card manager that allows users to securely store and access their credit card information
  • A secure notes manager that allows users to securely store and access their notes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    bitwarden: {
      type: "app",
      app: "bitwarden",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `${this.bitwarden.$auth.base_url}/public/members`,
      headers: {
        Authorization: `Bearer ${this.bitwarden.$auth.oauth_access_token}`,
      },
    })
  },
})

Choose an API to Connect with Bitwarden API

1
-
12
of
1000+
apps by most popular

Authentication

Bitwarden uses OAuth authentication. When you connect your Bitwarden account, Pipedream will open a popup window where you can sign into Bitwarden and grant Pipedream permission to connect to your account. Pipedream securely stores and automatically refreshes the OAuth tokens so you can easily authenticate any Bitwarden API.

Pipedream requests the following authorization scopes when you connect your account:

api.organization
OAuth Request Configurations:
  1. accessToken
    POST{{custom_fields.identity_url}}/connect/tokencontent-type: application/x-www-form-urlencodedaccept: application/json
    client_id={{custom_fields.client_id}}&client_secret={{custom_fields.client_secret}}&redirect_uri={{oauth.redirect_uri}}&code={{oauth.code}}&content-type=application/x-www-form-urlencoded&grant_type=client_credentials&scope={{oauth.space_separated_scopes}}
  2. refreshToken
    POST{{custom_fields.identity_url}}/connect/tokencontent-type: application/x-www-form-urlencodedaccept: application/json
    client_id={{custom_fields.client_id}}&client_secret={{custom_fields.client_secret}}&redirect_uri={{oauth.redirect_uri}}&code={{oauth.code}}&content-type=application/x-www-form-urlencoded&grant_type=client_credentials&scope={{oauth.space_separated_scopes}}