Deepgram’s API can be used to transcribe audio and video files, with support for various file formats and languages. Transcriptions can be stored and retrieved, and various text processing capabilities are available to enhance the transcripts. Additionally, the API can be used to search through transcripts for specific terms.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
deepgram: {
type: "app",
app: "deepgram",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.deepgram.com/v1/projects`,
headers: {
"Authorization": `Token ${this.deepgram.$auth.api_key}`,
},
})
},
})
Deepgram uses API keys for authentication. When you connect your Deepgram account, Pipedream securely stores the keys so you can easily authenticate to Deepgram APIs in both code and no-code steps.
You can create a Deepgram API Key in the Deepgram Console. You must create your first API Key using the Console.