Intelligent, high accuracy speech recognition built for business
Emit new event when a (classic) project card is created or moved to a specific column. For Projects V2 use New Issue with Status
trigger. More information here
Emit new events when collaborators are added to a repo
Retrieves details about the specified balance. See the documentation
Retrieves basic information about the specified project. See the documentation
Find issues and pull requests by state and keyword. See docs here
Retrieves the details of the specified request sent to the Deepgram API for the specified project. See the documentation
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}`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
github: {
type: "app",
app: "github",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.github.com/user`,
headers: {
Authorization: `Bearer ${this.github.$auth.oauth_access_token}`,
"X-GitHub-Api-Version": `2022-11-28`,
},
})
},
})