Rev.ai

Accurate Speech-to-Text APIs for all of your speech recognition needs

Integrate the Rev.ai API with the Node API

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

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
Run Node Code with the Node API

Write custom Node.js code and use any of the 400k+ npm packages available. Refer to the Pipedream Node docs to learn more.

 
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

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

Connect Node

1
2
3
4
5
6
7
// To use previous step data, pass the `steps` object to the run() function
export default defineComponent({
  async run({ steps, $ }) {
    // Return data to use it in future steps
    return steps.trigger.event
  },
})

Community Posts

Automate checking a ticket system's availability with Node.js and Pipedream
Automate checking a ticket system's availability with Node.js and Pipedream
How I used Node.js and Pipedream to automatically scrape a ticket booking site and notify me if availability had changed.