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:
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}`,
},
})
},
})
Returns the transcript for a completed transcription job. Transcript can be returned as either JSON or plaintext format.
Starts an asynchronous job to transcribe speech-to-text for a media file. Add an optional callback URL to invoke when processing is complete.
Rev.ai uses API keys for authentication. When you connect your Rev.ai account, Pipedream securely stores the keys so you can easily authenticate to Rev.ai APIs in both code and no-code steps.
Get your access token at https://www.rev.ai/access_token