Skip to main content
Last Updated: February 12, 2025 Migrating from Rev Transcription to Salad Transcription API will require only a simple API call modification. Depending on which features you are using, you may also be able to reduce the number of API calls required, as Salad Transcription API is able to handle multiple steps in one.

1. Get your Salad API Key.

  • Open up https://portal.salad.com and sign up/log into your account.
  • Navigate to your profile at the top right, and select API Access. Here you can find your API Key.

2. Updating job creation API calls.

If you’re just using the basic Speech To Text features from Rev Transcription, moving to Salad Transcription API is as simple as updating your API call.

Rev Transcription

Your existing API calls using Rev Transcription should look something like this:

Salad Transcription API Equivalent

When using Salad Transcription API, you’ll update that job creation call to instead look like this:
  • If you’re copy/pasting this call, you’ll update the URL to include your Salad Organization Name.
  • You’ll also need to include your SaladCloud API Key in the header.
  • Next, you’ll add the URL to the file to transcribe into the URL object. Make sure the file length is less than 2.5 hours, and less than 3GB. Make sure the URL provided is to a direct download of the file. Header based security is not compatible with Salad Transcription API, so you’ll need to use a signed URL like that offered by Salad Simple Storage Service
A breakdown of all our input parameters are available here. You will receive this JSON body from the POST response. You’ll need to cache the ID you receive, as this is how you’ll pull your job results.

3. More advanced jobs

If you are utilizing additional features offered by Rev to run analysis, or summarize intent, you can integrate these features into the same API call with Salad Transcription API.

Intent/summarization:

If you’re using Rev services to obtain the intent or summarization of transcribed text, you can also integrate this easily with Salad Transcription API with the same API call. For this, you’ll add the summarize input parameter, with the word limit for the summarization.

4. Updating your job retrieval:

You’ll also need to update the code you’re using to retrieve your job results. Currently, your process with Rev Transcription is likely made up of two steps, checking the status of the job, and then another step to obtain the transcription once complete. With Salad Transcription API, this is compacted into a single API call which contains the job status, as well as the completed results once the job succeeds.

Rev Transcription

Your flow with Rev Transcription should look something like this:
  • Check the status of the job
  • Obtain the results from the completed job

Salad Transcription API Equivalent

Instead, you’ll update your API call to this:
This method will return this JSON body:
Once the job is completed, the response will automatically update to include the URL for the file containing your job results.

5. SDK Equivalent

If you’re using the Rev SDK to handle your transcription, you’ll need to update your code accordingly. Whilst we do not offer an SDK, we do have example functions that will mimic them.

Rev Transcription

Your existing Python code with Rev Transcription should look something like this:

Salad Transcription API Equivalent

When converting to Salad Transcription API, the following code will mimic the actions of Rev Transcription.