Instapaper

Instapaper saves web pages to read later

Go to site
Explore
/
Apps
/
Instapaper

Instapaper API Integrations

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

With the Instapaper API, you can build applications that:

  • Fetch a list of articles saved by a user
  • Add new articles to a user's saved list
  • Remove articles from a user's saved list
  • Retrieve the contents of an article
  • Update the title or URL of an article
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    instapaper: {
      type: "app",
      app: "instapaper",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://www.instapaper.com/api/authenticate`,
      auth: {
        username: `${this.instapaper.$auth.username}`,
        password: `${this.instapaper.$auth.password}`,
      },
    })
  },
})

Choose an API to Connect with Instapaper API

1
-
12
of
1000+
apps by most popular

Add URL with Instapaper API on New Requests (Payload Only) from HTTP / Webhook API
HTTP / Webhook + Instapaper
 
Try it
Add URL with Instapaper API on New Item in Feed from RSS API
RSS + Instapaper
 
Try it
Add URL with Instapaper API on New Message from Discord API
Discord + Instapaper
 
Try it
Add URL with Instapaper API on New Message In Channels from Slack API
Slack + Instapaper
 
Try it
Add URL with Instapaper API on New Message in Channel from Discord Bot API
Discord Bot + Instapaper
 
Try it
Add URL with the Instapaper API

Adding URLs to an Instapaper account

 
Try it

Authentication

Instapaper uses API keys for authentication. When you connect your Instapaper account, Pipedream securely stores the keys so you can easily authenticate to Instapaper APIs in both code and no-code steps.

See Instapaper Simple Developer API integration docs here.