v1

latestOpenAPI 3.1.0MIT2026-07-2654137287.8 KB
inference_endpoints

Create a job for Salad Transcription Lite API

Creates a job for Salad Transcription Lite API

post/organizations/{organization_name}/inference-endpoints/transcription-lite/jobs

Request body

metadataobject nullable
webhookstring url nullable

Example request

{
  "input": {
    "url": "https://example.com/audiofile.mp3",
    "language_code": "en",
    "translate": "to_eng"
  }
}

Response

Created

idstring uuid required
inference_endpoint_namestring required

The inference endpoint name

metadataobject nullable
webhookstring url nullable
status'pending' | 'running' | 'succeeded' | 'cancelled' | 'failed' required
organization_namestring required

The organization name

create_timestring date-time required
update_timestring date-time required

Example response

{
  "input": {
    "url": "https://example.com/audiofile.mp3",
    "language_code": "en",
    "translate": "to_eng"
  },
  "output": {
    "sentence_level_timestamps": [
      {
        "text": "You know that little voice in your head?",
        "timestamp": [
          0,
          5.9
        ],
        "end": 5.9,
        "speaker": "SPEAKER_02"
      }
    ],
    "word_segments": [
      {
        "word": "You",
        "start": 4.274,
        "end": 4.395,
        "score": 0.89,
        "speaker": "SPEAKER_02"
      }
    ],
    "srt_content": "1\n00:00:04,274 --> 00:00:05,880\nYou know that little voice in your head?\n\n2\n00:00:10,506 --> 00:00:13,240\nThe one that tells you to ignore a tasteless joke?\n...",
    "text": "You know that little voice in your head? The one that tells you to ignore a tasteless joke? ...",
    "duration": 0.04,
    "processing_time": 69.79421997070312
  }
}