Schedule

Trigger workflows on an interval or cron schedule.

Integrate the Schedule API with the Readwise API

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

Get Highlight Details with Readwise API on Custom Interval from Schedule API
Schedule + Readwise
 
Try it
Get Highlight Details with Readwise API on Daily schedule from Schedule API
Schedule + Readwise
 
Try it
Get Highlight Details with Readwise API on Monthly Schedule from Schedule API
Schedule + Readwise
 
Try it
Get Highlight Details with Readwise API on Weekly schedule from Schedule API
Schedule + Readwise
 
Try it
List Highlights with Readwise API on Custom Interval from Schedule API
Schedule + Readwise
 
Try it
Custom Interval from the Schedule API

Trigger your workflow every N hours, minutes or seconds.

 
Try it
Daily schedule from the Schedule API

Trigger your workflow every day.

 
Try it
Monthly Schedule from the Schedule API

Trigger your workflow on one or more days each month at a specific time (with timezone support).

 
Try it
New Documents from the Readwise API

Emit new document See the documentation

 
Try it
Weekly schedule from the Schedule API

Trigger your workflow on one or more days each week at a specific time (with timezone support).

 
Try it
Get Highlight Details with the Readwise API

Get Highlight´s Details See the docs here

 
Try it
List Highlights with the Readwise API

A list of highlights with a pagination metadata. The rate limit of this endpoint is restricted to 20 requests per minute. Each request returns 1000 items. See the docs here

 
Try it

Overview of Schedule

The Schedule app in Pipedream is a powerful tool that allows you to trigger workflows at regular intervals, ranging from every minute to once a year. This enables the automation of repetitive tasks and the scheduling of actions to occur without manual intervention. By leveraging this API, you can execute code, run integrations, and process data on a reliable schedule, all within Pipedream's serverless environment.

Overview of Readwise

The Readwise API allows you to access and manipulate your Readwise data, which includes highlights, notes, and books from your reading list. With this API, you can automate the retrieval of your reading highlights, synchronize them across various platforms, or trigger custom actions based on new highlights added. Pipedream, as a serverless integration and compute platform, enables you to create workflows that leverage the Readwise API to build powerful automations, connecting your reading insights to countless other apps and services to enrich productivity and data management.

Connect Readwise

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: {
    readwise: {
      type: "app",
      app: "readwise",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://readwise.io/api/v2/books/`,
      headers: {
        "Authorization": `Token ${this.readwise.$auth.access_token}`,
      },
    })
  },
})