ConvertAPI is a high-performance online files conversion and manipulation service for developers. It can be integrated into any application or platform in just a few minutes, scales up to handle any amount of traffic, uses little resources and supports 200+ conversion actions.
Go to siteConvertAPI is a powerhouse for online file conversion, enabling you to transform files from one format to another effortlessly. It supports a plethora of file types, from common ones like PDFs and DOCs to more obscure formats. With ConvertAPI on Pipedream, you can automate file conversion tasks, seamlessly integrating them into workflows that trigger on events from other apps or schedules. Imagine converting incoming email attachments, processing uploaded documents, or archiving files in a different format—all happening automatically, in the background.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
convertapi: {
type: "app",
app: "convertapi",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://v2.convertapi.com/user`,
params: {
Secret: `${this.convertapi.$auth.api_secret}`,
},
})
},
})
Automated Document Conversion for Email Attachments: Whenever you receive an email with an attachment in Gmail, Pipedream can catch this event, send the file to ConvertAPI to change it to your preferred format (e.g., DOCX to PDF), and then save the converted file to Google Drive.
Batch Image Conversion for Cloud Storage: Set up a Pipedream workflow that monitors a Dropbox folder for new images. When new images are detected, the workflow uses ConvertAPI to convert them to a different format (say, PNG to JPG) and then stores the converted images back in Dropbox or another storage service like AWS S3.
Website Screenshot to PDF Archival: Trigger a Pipedream workflow with a cron schedule to take a screenshot of a webpage using ConvertAPI's 'Web to PDF' function. The PDF can then be timestamped and saved to a data store or cloud service for record-keeping or later reference.
ConvertAPI uses API keys for authentication. When you connect your ConvertAPI account, Pipedream securely stores the keys so you can easily authenticate to ConvertAPI APIs in both code and no-code steps.
You can get your API Secret on your Profile Page under the Authentication section on the left sidebar.