The Readwise API is an amazing resource for building powerful applications that use Readwise's unique data and insights. Using the Readwise API, you can build applications that:
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}`,
},
})
},
})
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
Readwise uses API keys for authentication. When you connect your Readwise account, Pipedream securely stores the keys so you can easily authenticate to Readwise APIs in both code and no-code steps.
To connect Readwise with Pipedream,