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 Go API

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

Run Go Code with Go API on New Bookmark from Raindrop API
Raindrop + Go
 
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 Go Code with the Go API

Run any Go code and use any Go package available with a simple import. Refer to the Pipedream Go 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 Go

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package main

import (
	"fmt"

	pd "github.com/PipedreamHQ/pipedream-go"
)

func main() {
	// Access previous step data using pd.Steps
	fmt.Println(pd.Steps)

	// Export data using pd.Export
	data := make(map[string]interface{})
	data["name"] = "Luke"
	pd.Export("data", data)
}