Salad Transcription API · Example Payload

Salad Get Transcript Example

Retrieve the completed transcript for a transcription job.

Audio TranscriptionCaptionsDiarizationGPUSpeech RecognitionTranscriptionVideo Processing

Salad Get Transcript Example is an example object payload from Salad Transcription API, with 6 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

operationmethodpathdescriptionrequestresponse

Example Payload

Raw ↑
{
  "operation": "Get Transcript",
  "method": "GET",
  "path": "/{jobId}",
  "description": "Retrieve the completed transcript for a transcription job.",
  "request": {
    "headers": {
      "Salad-Api-Key": "<your-api-key>"
    },
    "pathParameters": {
      "jobId": "54e84442-3576-45ca-904c-a1d90bc77baf"
    }
  },
  "response": {
    "status": 200,
    "body": {
      "id": "54e84442-3576-45ca-904c-a1d90bc77baf",
      "input": {
        "url": "https://storage.example.com/audio/meeting-recording-2026-05-02.mp3",
        "language_code": "en",
        "word_level_timestamps": true,
        "diarization": true,
        "srt": false
      },
      "status": "succeeded",
      "events": [
        { "action": "created", "time": "2026-05-02T10:00:00.000Z" },
        { "action": "started", "time": "2026-05-02T10:00:45.000Z" },
        { "action": "succeeded", "time": "2026-05-02T10:02:10.000Z" }
      ],
      "output": {
        "segments": [
          {
            "start": 0.5,
            "end": 4.2,
            "text": "Good morning everyone, let's get started.",
            "speaker": "SPEAKER_00",
            "words": [
              { "word": "Good", "start": 0.5, "end": 0.7, "score": 0.99, "speaker": "SPEAKER_00" },
              { "word": "morning", "start": 0.7, "end": 1.1, "score": 0.98, "speaker": "SPEAKER_00" },
              { "word": "everyone,", "start": 1.2, "end": 1.8, "score": 0.97, "speaker": "SPEAKER_00" }
            ]
          },
          {
            "start": 5.0,
            "end": 8.3,
            "text": "Thanks for joining. We have three items today.",
            "speaker": "SPEAKER_01",
            "words": [
              { "word": "Thanks", "start": 5.0, "end": 5.3, "score": 0.96, "speaker": "SPEAKER_01" }
            ]
          }
        ],
        "duration": 142.7,
        "processing_time": 85.4
      },
      "create_time": "2026-05-02T10:00:00.000Z",
      "update_time": "2026-05-02T10:02:10.000Z"
    }
  }
}