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}`,
},
})
},
})
Retrieves details about the specified balance. See the documentation
Retrieves basic information about the specified project. See the documentation
Retrieves the details of the specified request sent to the Deepgram API for the specified project. See the documentation
Generates a list of outstanding balances for the specified project. See the documentation
Retrieves basic information about the specified project. See the documentation
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. Please note, that you should copy the key and save it somewhere safe, as you will not be able to view the key again after generating it.