Rev

Affordable, accurate, easy-to-use speech-to-text solutions powered by people and A.I working together. Rev offers transcripts, captions, subtitles, and more.

Integrate the Rev API with the GitHub API

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

Create Issue with GitHub API on Order Submitted from Rev API
Rev + GitHub
 
Try it
Search Issues and Pull Requests with GitHub API on Order Submitted from Rev API
Rev + GitHub
 
Try it
Create Automated Transcription Order Using External Link with Rev API on New Branch (Instant) from GitHub API
GitHub + Rev
 
Try it
Create Automated Transcription Order Using External Link with Rev API on New Card in Column (Classic Projects) from GitHub API
GitHub + Rev
 
Try it
Create Automated Transcription Order Using External Link with Rev API on New Collaborator (Instant) from GitHub API
GitHub + Rev
 
Try it
Order Submitted from the Rev API

Emit new event when an order is submitted. See docs here.

 
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
Create Automated Transcription Order Using External Link with the Rev API

Submit a new automated transcription order using a external link that contains the media. See docs here.

 
Try it
Create Issue with the GitHub API

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

 
Try it
Create Caption Order Using External Link with the Rev API

Submit a new caption order using a external link that contains the media. See docs here.

 
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
Create Transcription Order Using External Link with the Rev API

Submit a new transcription order using a external link that contains the media. See docs here.

 
Try it

Overview of Rev

With Rev's API, you can build integrations that access the full range of
professional services our platform offers. This includes text, audio, and video
transcription, translation, and captioning - Faster, and at scale.

Here are some examples of what you can create with the Rev API:

  • Transcription of any voice or video recordings for accurate data extraction
  • Text-to-speech conversion for different languages
  • Automated captioning and subtitling for media
  • Machine translation for multilingual projects
  • Audio engineering services for media projects
  • Quality assurance tools with Transcription accuracy feedback

Connect Rev

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: {
      type: "app",
      app: "rev",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://www.rev.com/api/v1/orders`,
      headers: {
        "Authorization": `Rev ${this.rev.$auth.client_api_key}:${this.rev.$auth.user_api_key}`,
      },
    })
  },
})

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`,
      },
    })
  },
})