Last Updated: November 26, 2024Documentation Index
Fetch the complete documentation index at: https://docs.salad.com/llms.txt
Use this file to discover all available pages before exploring further.
Accounts & Credentials
Create SaladCloud Account
To start, visit https://portal.salad.com/ to log in or create a free account. New users receive 5 free audio hours to transcribe at no cost! Watch our quick tutorial on how to use your free credits effectively.
Create SaladCloud Organization
Next, create a new organization or select an existing one you’d like to use for transcription. Click on Switch to this Organization for the org you want to use.
Get Transcription API URL
Then, click on Inference Endpoints in the left-hand nav and open up the Transcription API or Transcription Lite.

Authentication
Copy your SaladCloud API key from your account here.
How to Use Transcription APIs
We provide several examples and resources to help you use the API effectively:- For a cURL example and parameter descriptions, refer to Example cURL Post on this page.
- For easy testing with our API reference, visit the API Reference.
- For process automation, see Transcription Automation.
- For native Python integration, check out our official Python SDK. The SDK simplifies file uploads to S4, authentication, job polling, and webhook handling, letting you transcribe and manage jobs with just a few lines of code.
Example cURL Post with Salad Transcription API
Example cURL Post with Transcription Lite
- Fill in the file link instead of “https://example.com/path/to/file.mp3”
-
Optional : replace
{your webhook url}with webhook url if needed. If not, remove the line.
Example cURL Get Transcript from Salad Transcription API
Example cURL Get Transcript from Transcription Lite
Step 1 | Configure Header
Configure you header to include your unique SaladCloud API URL which can be found above as the variable “API URL”. Also include your unique SaladCloud API key which can be found here as the variable “Salad-Api-Key”.Step 2 | Set Input Parameters
To find more information about each parameter, please, visit “Features” option in the menu on the left. Update the JSON input parameters to customize your transcription output.url
The url parameter should be a downloadable link to your audio or video file. We recommend using a file service like AWS S3, Azure Blob Storage, Dropbox, or Google Drive that offers secure, downloadable links. For instructions on how to generate downloadable links for these services, please refer to How to Create Downloadable File Links Send media in any of these formats. Audio: AIFF, FLAC, M4A, MP3, WAV Video: MKV, MOV, WEBM, WMA, MP4 (most codecs), AVIreturn_as_file
Set to true to receive the transcription output as a downloadable file URL. This is useful for large outputs. Default is false.language_code
Transcription is available in 97 languages. We automatically identify the source language. You only need to specify the “language_code” if diarization is required. Please note that accuracy varies across languages — some may perform better than others. For detailed accuracy information, refer to our language benchmark results.sentence_level_timestamps
Sentence level timestamps are returned on default. Set to false if not needed.word_level_timestamps
Set to “true” for word level timestamps. Set to “false” on default.diarization
Set to “true” for speaker separation and identification. If you don’t require it, set it to “false”. Diarization requires thelanguage_code to be defined. By default, it is set to "en" (English).
You can also diarize in “fr” (French), “de” (German), “es” (Spanish), “it” (Italian), “ja” (Japanese), “zh”
(Chinese), “nl” (Dutch), “uk” (Ukrainian), “pt” (Portuguese), “ar” (Arabic), “cs” (Czech), “ru” (Russian),
“pl” (Polish), “hu” (Hungarian), “fi” (Finnish), “fa” (Persian), “el” (Greek), “tr” (Turkish), “da”
(Danish), “he” (Hebrew), “vi” (Vietnamese), “ko” (Korean), “ur” (Urdu), “te” (Telugu), “hi” (Hindi), “ca”
(Catalan), “ml” (Malayalam).
sentence_diarization
Set totrue to include speaker information at the sentence level. Requires language_code to be specified. Default is
false.
multichannel
Set totrue to enable multichannel transcription. Each channel will be transcribed separately and labeled with
channel and speaker. Falls back to regular speaker diarization if only one channel is present. Requires
diarization for word-level speaker and channel labeling, or sentence_diarization for sentence-level speaker and
channel labeling.
translate
Set"translate": "to_eng" to translate the transcription into English. This replaces the original transcription with
the English translation. All additional parameters may also be used alongside translation.
llm_translation
(Salad Transcription API only) Provide a comma-separated list of target languages to translate the transcription into multiple languages using our LLM integration. The original transcription will be returned as normal, along with the translations. Supported languages: English, French, German, Italian, Portuguese, Hindi, Spanish, Thaisrt
Set to “true” to generate a .srt output for caption and subtitles. If you don’t require it, set it to “false”.srt_translation
(Salad Transcription API only) Provide a comma-separated list of target languages to translate the generated SRT captions into multiple languages. The original transcription and SRT content will be returned as normal. Supported languages: English, French, German, Italian, Portuguese, Hindi, Spanish, Thaisummarize
(Salad Transcription API only) Set to an integer value representing the maximum number of words for the summary of the transcription.custom_vocabulary (preview)
(Salad Transcription API only) Provide a comma-separated list of custom words or phrases to improve transcription accuracy for domain-specific terms.custom_prompt (preview)
(Salad Transcription API only) Provide a custom instruction to perform specific analyses on the transcription using our LLM integration.classification_labels
overall_classification
(Salad Transcription API only) Use the classification_labels parameter in conjunction with overall_classification to classify the entire transcription into specified categories using an LLM.overall_sentiment_analysis
(Salad Transcription API only) Set “overall_sentiment_analysis”: true to perform sentiment analysis.webhook
*Optional. Webhook is a method that enables application to transmit data to another application immediately when process is finished. Specify your webhook url to use.my-job-id
*Optional. If you need an identifier from your system you can the job id as desired.Step 3 | Make Post Request
Make your POST transcript request. If successful, you will receive a confirmation response that will include the job “id” *(ex: fb724cc9-d0f7-44a1-86c4-180c7fab975e).Step 4 | Make Get Request
Make your GET transcript request. If successful, you will receive a JSON transcript output that will include the inputs you requested.Example Transcript Output
API Reference
Access detailed API specifications and test requests directly by visiting the Transcription API Reference page.Step 1: Set Up Authorization
- In the dropdown menu on the left, make sure “Create a job for Salad Transcription API” is selected.
- Enter your Salad API key and Organization Name. Follow instructions above if you do not know where to find them.
- Under the Authorization section, provide your Salad API key.
- Under the Path section, specify your organization name.

Step 2: Configure Input Parameters
- In the Body section, specify the input parameters as described in the documentation above.
- Each parameter is explained directly on the reference page to help you customize your request.

Step 3: Submit the Request
- Click the Send button to submit the request.
- Upon success, you’ll receive a response containing a unique
"id"field. This Job ID will be used to retrieve the transcription results.

Step 4: Retrieve Transcription Results
- In the dropdown menu on the left, select “Get job for Salad Transcription API”.
- Under the Authorization section, provide your Salad API key.
- Under the Path section, specify your organization name and the Job ID you received in Step 3.
- Click Send to fetch the transcription results.

Example Response
- The response will include the transcription output, timestamps, and other requested data, depending on the parameters you specified.
