Accurate Speech-to-Text APIs for all of your speech recognition needs
Emit new event each time a Telegram Bot command is received.
Emit new event each time a channel post is created or updated.
Emit new event each time a Telegram message is created or updated.
Returns the transcript for a completed transcription job. Transcript can be returned as either JSON or plaintext format.
Create an additional invite link for a chat, See the docs for more information
Starts an asynchronous job to transcribe speech-to-text for a media file. Add an optional callback URL to invoke when processing is complete.
Edits photo or video messages. See the docs for more information
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}`,
},
})
},
})
With the Telegram Bot API, you can build bots that perform a variety of tasks,
including:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
telegram_bot_api: {
type: "app",
app: "telegram_bot_api",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.telegram.org/bot${this.telegram_bot_api.$auth.token}/getMe`,
})
},
})