Node package manager
Emit new event with the latest count of downloads for an npm package. See the documentation.
Emit new event when a new version of an npm package is published. See the documentation
Fetches transcript/subtitles from a YouTube video using Gistly API.
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}`,
},
})
},
})