Pushbullet

Pushbullet connects your devices, making them feel like one

Go to site
Explore
/
Apps
/
Pushbullet

Pushbullet API Integrations

Build and run workflows using the Pushbullet 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

The Pushbullet API is a great tool for building applications that can do a wide variety of tasks. From pushing notifications to sending messages, the Pushbullet API is a powerful resource for developers. Here are a few examples of what you can build using the Pushbullet API:

  • Mobile Apps - Using the Pushbullet API, you can create mobile apps that use Pushbullet's notifications and messaging to send messages and information to users.
  • Chatbots - Chatbots can be created using the Pushbullet API to interact with users.
  • Real-time Alerts - With the Pushbullet API, you can create applications that send real-time alerts to users, such as notifications about weather or important news.
  • Reminders & Tasks - Pushbullet's API can be used to create applications that allow users to set reminders and tasks by sending them messages and notifications.
  • Automation - Automation applications can be built using the Pushbullet API to automate tasks, such as setting up daily reminders or sending out messages and notifications on a regular basis.
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: {
    pushbullet: {
      type: "app",
      app: "pushbullet",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.pushbullet.com/v2/users/me`,
      headers: {
        Authorization: `Bearer ${this.pushbullet.$auth.oauth_access_token}`,
      },
    })
  },
})

Choose an API to Connect with Pushbullet API

1
-
12
of
1000+
apps by most popular

Delete push with Pushbullet API on New Requests (Payload Only) from HTTP / Webhook API
HTTP / Webhook + Pushbullet
 
Try it
Delete push with Pushbullet API on New Message from Discord API
Discord + Pushbullet
 
Try it
Delete push with Pushbullet API on New Message In Channels from Slack API
Slack + Pushbullet
 
Try it
Delete push with Pushbullet API on New Message in Channel from Discord Bot API
Discord Bot + Pushbullet
 
Try it
Delete push with Pushbullet API on New Submission from Typeform API
Typeform + Pushbullet
 
Try it
Delete push with the Pushbullet API

Delete a push. See docs here

 
Try it
Send push (Note, Link and File) with the Pushbullet API

Send a push to a device or another person. See docs here

 
Try it

Authentication

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

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

OAuth Request Configurations:
  1. authorization
    GEThttps://www.pushbullet.com/authorize?client_id={{oauth.client_id}}&redirect_uri={{oauth.redirect_uri}}&state={{oauth.state}}&response_type=code&scope={{oauth.space_separated_scopes}}
  2. accessToken
    POSThttps://api.pushbullet.com/oauth2/tokencontent-type: application/x-www-form-urlencodedaccept: application/json
    client_id={{oauth.client_id}}&client_secret={{oauth.client_secret}}&redirect_uri={{oauth.redirect_uri}}&grant_type=authorization_code&code={{oauth.code}}