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}`,
},
})
},
})
Fetches transcript/subtitles from a YouTube video using Gistly API.
Gistly uses API keys for authentication. When you connect your Gistly account, Pipedream securely stores the keys so you can easily authenticate to Gistly APIs in both code and no-code steps.