Online file conversion website.
Exposes an HTTP API for scheduling messages to be emitted at a future time
Emit new event when a conversion job has completed. See the documentation
Emit new event based on a time interval before an upcoming event in the calendar. This source uses Pipedream's Task Scheduler. See the documentation for more information and instructions for connecting your Pipedream account.
Emit new event when a file has been converted successfully. See the documentation
Emit new event at a specified time before a card is due.
Creates a file from the provided content. See the documentation
Finds the file that has been processed under the specified job id. See the documentation
Starts a conversion job and upload a source file in a single request. See the documentation
The Zamzar API on Pipedream provides powerful file conversion capabilities, allowing you to easily automate the process of converting files between different formats. With Pipedream's serverless platform, you can set up workflows that trigger conversions, handle the completed files, and integrate with other services for a seamless automation experience. From document conversion for data analysis to prepping media files for different platforms, Zamzar's API coupled with Pipedream's robust functionality opens up a world of possibilities for streamlining tasks.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
zamzar: {
type: "app",
app: "zamzar",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.zamzar.com/v1/account`,
auth: {
username: `${this.zamzar.$auth.api_key}`,
password: ``,
},
})
},
})
Pipedream is an API that allows you to build applications that can connect to
various data sources and processes them in real-time. You can use Pipedream to
create applications that can perform ETL (Extract, Transform, and Load) tasks,
as well as to create data-driven workflows.
Some examples of applications you can build using the Pipedream API include:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
pipedream: {
type: "app",
app: "pipedream",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.pipedream.com/v1/users/me`,
headers: {
Authorization: `Bearer ${this.pipedream.$auth.api_key}`,
},
})
},
})