What do you want to automate

with TLDR and PDF-API.io?

Prompt, edit and deploy AI agents that connect to TLDR, PDF-API.io and 2,500+ other apps in seconds.

Trusted by 1,000,000+ developers from startups to Fortune 500 companies

Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo
Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo
Summarize Text with the TLDR API

Reads in a piece of text and distills the main points. See the documentation

 
Try it
Integrate the TLDR API with the PDF-API.io API
Setup the TLDR API trigger to run a workflow which integrates with the PDF-API.io API. Pipedream's integration platform allows you to integrate TLDR and PDF-API.io remarkably fast. Free for developers.

Connect TLDR

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    tldr: {
      type: "app",
      app: "tldr",
    }
  },
  async run({steps, $}) {
    const data =             {
                    "responseLength": 1,
                    "responseStyle": "Funny",
                    "inputText": "Lorem ipsum dolor sit amet..."
                }
    return await axios($, {
      method: "post",
      url: `https://runtldr.com/apis/v1/summarize`,
      headers: {
        Authorization: `Bearer ${this.tldr.$auth.api_key}`,
        "Content-Type": `application/json`,
      },
      data,
    })
  },
})

Connect PDF-API.io

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

Trusted by 1,000,000+ developers from startups to Fortune 500 companies

Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo
Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo