Raindrop

Raindrop.io is the best place to keep all your favorite books, songs, articles or whatever else you come across while browsing.

Integrate the Raindrop API with the Node API

Setup the Raindrop API trigger to run a workflow which integrates with the Node API. Pipedream's integration platform allows you to integrate Raindrop and Node remarkably fast. Free for developers.

Run Node Code with Node API on New Bookmark from Raindrop API
Raindrop + Node
 
Try it
New Bookmark from the Raindrop API

Emit new event when a bookmark is added

 
Try it
Create New Collection with the Raindrop API

Creates an additional collection. See the docs here

 
Try it
Run Node Code with the Node API

Write custom Node.js code and use any of the 400k+ npm packages available. Refer to the Pipedream Node docs to learn more.

 
Try it
Delete Bookmark with the Raindrop API

Delete a bookmark. See the docs here

 
Try it
Delete Collection with the Raindrop API

Delete a collection. See the docs here

 
Try it
Get Bookmark with the Raindrop API

Retrieve bookmark detailed information by given ID. See the docs here

 
Try it

Overview of Raindrop

The Raindrop API provides users with powerful tools to create sophisticated web
and mobile applications. With Raindrop, users have the ability to build and
deploy a wide range of applications, feature-rich applications that can meet
the needs and requirements of any business.

Here are just some of the many things you can build with the Raindrop API:

  • Create and manage dynamic user databases.
  • Create marketing campaigns and loyalty programs.
  • Create web and mobile applications.
  • Create integrated payment systems.
  • Create targeted data-driven newsletters.
  • Monitor user activity with analytics.
  • Build and deliver customized experiences.
  • Build and integrate with third-party APIs.
  • Create and manage multi-tier role-based user hierarchies.
  • Create virtual currencies.
  • Set up custom forms for collecting user data.

Connect Raindrop

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: {
    raindrop: {
      type: "app",
      app: "raindrop",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.raindrop.io/rest/v1/user`,
      headers: {
        Authorization: `Bearer ${this.raindrop.$auth.oauth_access_token}`,
      },
    })
  },
})

Connect Node

1
2
3
4
5
6
7
// To use previous step data, pass the `steps` object to the run() function
export default defineComponent({
  async run({ steps, $ }) {
    // Return data to use it in future steps
    return steps.trigger.event
  },
})

Community Posts

Automate checking a ticket system's availability with Node.js and Pipedream
Automate checking a ticket system's availability with Node.js and Pipedream
How I used Node.js and Pipedream to automatically scrape a ticket booking site and notify me if availability had changed.