Deepgram

Intelligent, high accuracy speech recognition built for business

Go to site
Explore
/
Apps
/
Deepgram

Deepgram API Integrations

Build and run workflows using the Deepgram API. Use 1000s of source-available triggers and actions across 1000+ apps. Or write custom code to integrate any app or API in seconds.

Overview

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.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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}`,
      },
    })
  },
})

Authentication

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.

Community Posts

Automatically Transcribe Google Drive Files with Pipedream
Automatically Transcribe Google Drive Files with Pipedream
Learn how to automate the creation of transcriptions by simply dropping files into a Google Drive folder.