Trigger workflows on an interval or cron schedule.
Fetches transcript/subtitles from a YouTube video using Gistly API.
The Schedule app in Pipedream is a powerful tool that allows you to trigger workflows at regular intervals, ranging from every minute to once a year. This enables the automation of repetitive tasks and the scheduling of actions to occur without manual intervention. By leveraging this API, you can execute code, run integrations, and process data on a reliable schedule, all within Pipedream's serverless environment.
Gistly API allows you to fetch transcripts or subtitles from YouTube videos in various formats. It's a powerful tool for integrating video content into your applications, enabling you to process and analyze video transcripts programmatically.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
gistly: {
type: "app",
app: "gistly",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.gist.ly/health`,
headers: {
"x-api-key": `${this.gistly.$auth.api_key}`,
},
})
},
})