Rev.ai

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

Integrate the Rev.ai API with the Airtable (OAuth) API

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

Get Transcript By Id with Rev.ai API on New Field from Airtable API
Airtable (OAuth) + Rev.ai
 
Try it
Get Transcript By Id with Rev.ai API on New Modified or Deleted Records (Instant) from Airtable (OAuth) API
Airtable (OAuth) + Rev.ai
 
Try it
Get Transcript By Id with Rev.ai API on New or Modified Field from Airtable API
Airtable (OAuth) + Rev.ai
 
Try it
Get Transcript By Id with Rev.ai API on New or Modified Records from Airtable API
Airtable (OAuth) + Rev.ai
 
Try it
Get Transcript By Id with Rev.ai API on New or Modified Records in View from Airtable API
Airtable (OAuth) + Rev.ai
 
Try it
New Field from the Airtable (OAuth) API

Emit new event for each new field created in a table

 
Try it
New Modified or Deleted Records (Instant) from the Airtable (OAuth) API

Emit new event each time a record is added, updated, or deleted in an Airtable table. See the documentation

 
Try it
New or Modified Field from the Airtable (OAuth) API

Emit new event for each new or modified field in a table

 
Try it
New or Modified Records from the Airtable (OAuth) API

Emit new event for each new or modified record in a table

 
Try it
New or Modified Records in View from the Airtable (OAuth) API

Emit new event for each new or modified record in a view

 
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
Create Comment with the Airtable (OAuth) API

Create a new comment on a record. See the documentation

 
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 Field with the Airtable (OAuth) API

Create a new field in a table. See the documentation

 
Try it
Create Multiple Records with the Airtable (OAuth) API

Create one or more records in a table by passing an array of objects containing field names and values as key/value pairs. See the documentation

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

Overview of Airtable (OAuth)

Using the Airtable API, you can build applications that can:

  • Create and manage databases
  • Add, update, and delete records
  • Search for records
  • Sort and filter records
  • Display records in a variety of ways
  • Import and export data

Connect Airtable (OAuth)

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: {
    airtable_oauth: {
      type: "app",
      app: "airtable_oauth",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.airtable.com/v0/meta/whoami`,
      headers: {
        Authorization: `Bearer ${this.airtable_oauth.$auth.oauth_access_token}`,
      },
    })
  },
})