Rev AI integration
Affordable, accurate, easy-to-use speech-to-text solutions powered by people…
- Provider
- rev
- Category
- Other
- Setup
- User-supplied API key
- Actions
- 36 available
Quick start
Call Rev AI from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to Rev AI's public Composio identifier — your app references it by name and OverSkill handles the OAuth round-trip.
// In your generated app's worker handler:
const composio = composioClient(env);
const result = await composio.execute(
"REV_ACTION_NAME",
{ /* action parameters — see Actions section below */ }
);
return new Response(JSON.stringify(result), {
headers: { "Content-Type": "application/json" }
});
Replace ACTION_NAME with one of the slugs listed in
the Actions section below. The composio client handles auth +
rate limits automatically — no API key is exposed to user code.
Setup
End-users supply their own Rev AI API key. OverSkill provides a pre-built connection form via the integration card — your app can call the composio client immediately once the user has connected.
Available actions
36 actions exposed via the
Rev AI integration. Each maps to a callable
slug — pass it to composio.execute(...) in your
worker code.
-
REV_CREATE_RTMP_STREAM -
REV_DELETE_ALIGNMENT_JOB -
REV_DELETE_CUSTOM_VOCABULARY -
REV_DELETE_JOB_BY_ID -
REV_DELETE_LANGUAGE_ID_JOB -
REV_DELETE_SENTIMENT_JOB -
REV_DELETE_TOPIC_EXTRACTION_JOB -
REV_GET_ACCOUNT -
REV_GET_ALIGNMENT_JOB -
REV_GET_ALIGNMENT_TRANSCRIPT -
REV_GET_CAPTIONS -
REV_GET_CAPTIONS_TRANSLATION
Show all 36 actions
-
REV_GET_CUSTOM_VOCABULARY_DETAILS -
REV_GET_JOB_BY_ID -
REV_GET_LANGUAGE_ID_JOB -
REV_GET_LANGUAGE_ID_RESULT -
REV_GET_LIST_OF_JOBS -
REV_GET_SENTIMENT_JOB -
REV_GET_SENTIMENT_RESULT -
REV_GET_TOPIC_EXTRACTION_RESULT -
REV_GET_TOPIC_JOB -
REV_GET_TRANSCRIPT_BY_ID -
REV_GET_TRANSCRIPT_SUMMARY -
REV_GET_TRANSCRIPT_TRANSLATION -
REV_LIST_ALIGNMENT_JOBS -
REV_LIST_CUSTOM_VOCABULARIES -
REV_LIST_LANGUAGE_ID_JOBS -
REV_LIST_SENTIMENT_JOBS -
REV_LIST_TOPIC_JOBS -
REV_START_STREAM_TRANSCRIPTION -
REV_SUBMIT_ALIGNMENT_JOB -
REV_SUBMIT_CUSTOM_VOCABULARY -
REV_SUBMIT_LANGUAGE_ID_JOB -
REV_SUBMIT_SENTIMENT_ANALYSIS_JOB -
REV_SUBMIT_TOPIC_EXTRACTION_JOB -
REV_SUBMIT_TRANSCRIPTION_JOB
Build with Rev AI
Open OverSkill, describe what you want to build, and reference Rev AI in your prompt — the AI will wire up the integration automatically.