GitHub

Where the world builds software. Millions of developers and companies build, ship, and maintain their software on GitHub—the largest and most advanced development platform in the world.

Integrate the GitHub API with the Rev.ai API

Setup the GitHub API trigger to run a workflow which integrates with the Rev.ai API. Pipedream's integration platform allows you to integrate GitHub and Rev.ai remarkably fast. Free for developers.

Get Transcript By Id with Rev.ai API on New Branch (Instant) from GitHub API
GitHub + Rev.ai
 
Try it
Get Transcript By Id with Rev.ai API on New Card in Column (Instant) from GitHub API
GitHub + Rev.ai
 
Try it
Get Transcript By Id with Rev.ai API on New Collaborator (Instant) from GitHub API
GitHub + Rev.ai
 
Try it
Get Transcript By Id with Rev.ai API on New Commit Comment (Instant) from GitHub API
GitHub + Rev.ai
 
Try it
Get Transcript By Id with Rev.ai API on New Commit from GitHub API
GitHub + Rev.ai
 
Try it
New Branch from the GitHub API

Emit new event when a branch is created See the documentation

 
Try it
New Card in Column (Classic Projects) from the GitHub API

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

 
Try it
New Collaborator from the GitHub API

Emit new event when a collaborator is added See the documentation

 
Try it
New Commit from the GitHub API

Emit new event when commits are pushed to a branch See the documentation

 
Try it
New Commit Comment from the GitHub API

Emit new event when a commit comment is created See the documentation

 
Try it
Create Issue with the GitHub API

Create a new issue in a Gihub repo. See docs here

 
Try it
Get Transcript By Id with the Rev.ai API

Returns the transcript for a completed transcription job. Transcript can be returned as either JSON or plaintext format.

 
Try it
Search Issues and Pull Requests with the GitHub API

Find issues and pull requests by state and keyword. See docs here

 
Try it
Submit Transcription Job with the Rev.ai API

Starts an asynchronous job to transcribe speech-to-text for a media file. Add an optional callback URL to invoke when processing is complete.

 
Try it
Create Branch with the GitHub API

Create a new branch in a Github repo. See docs here

 
Try it

Connect GitHub

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

Overview of Rev.ai

Rev.ai API is an automatic speech recognition (ASR) software that enables users
to extract meaning from audio files. With this highly accurate software, you
can develop powerful and relevant solutions for businesses and organizations.
Whether you're looking to create smart virtual assistants, streamline customer
engagements, or boost digital transcription compliance, Rev.ai API provides you
with the tools you need to get the job done. Here are some of the things you
can build with Rev.AI API:

  • Chatbots and virtual assistants: Rev.ai API can be used to add speech
    recognition capability to your existing chatbot/virtual assistant and make it
    more interactive and efficient.
  • Speech Enabled Interfaces and Controls: Rev.ai API enables you to create
    speech enabled interfaces and controls for a variety of applications such as
    TVs, vehicles, home automation systems, etc.
  • Automatic Speech Recognition: With Rev.ai API, you can easily integrate
    automatic speech recognition capabilities into your application, enabling you
    to quickly transcribe spoken language into text.
  • Intelligent Digital Transcription: With Rev.ai API you can create accurate,
    real-time digital transcription from audio files, allowing you to quickly and
    accurately transcribe recorded conversations and other spoken content.
  • Voice Biometrics: Rev.ai API can be used to add voice biometrics capabilities
    to your application, allowing users to easily verify their identities using
    the power of their voices.
  • Natural Language Understanding (NLU): Rev.ai API can be used to create
    natural language understanding solutions that enable your applications to
    understand the meaning of spoken language, allowing them to understand and
    respond to user input.
  • Voice Data Analytics: With Rev.ai API, you can develop voice data analytics
    solutions that make it easy to analyze voice data and gain valuable insights.

Connect Rev.ai

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: {
    rev_ai: {
      type: "app",
      app: "rev_ai",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.rev.ai/speechtotext/v1/account`,
      headers: {
        Authorization: `Bearer ${this.rev_ai.$auth.access_token}`,
      },
    })
  },
})