v1

latestOpenAPI 3.1.0MIT2026-07-2654137287.8 KB
inference_endpoints

Get job for Salad Transcription API

Retrieves a job for Salad Transcription API

get/organizations/{organization_name}/inference-endpoints/transcribe/jobs/{job_id}

Response

Ok

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",
    "custom_prompt": "Summarize the main points of the conversation.",
    "summarize": 100,
    "llm_translation": "french, german",
    "srt_translation": "spanish, hindi",
    "custom_vocabulary": "AI, NLP, cloud computing",
    "classification_labels": "INTERVIEW, MEETING, CALL"
  },
  "output": {
    "sentence_level_timestamps": [
      {
        "text": "You know that little voice in your head?",
        "timestamp": [
          0,
          5.9
        ],
        "end": 5.9,
        "speaker": "SPEAKER_02",
        "sentiment": [
          {
            "label": "NEGATIVE",
            "score": 0.9837925434112549
          }
        ],
        "classification": {
          "label": [
            "VOICEMAIL",
            "PHONE_CALL",
            "PRESENTATION"
          ],
          "scores": [
            0.2575797736644745,
            0.20001687109470367,
            0.15546734631061554
          ]
        }
      }
    ],
    "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...",
    "summary": "Silence oppressive voices, amplify your own.",
    "llm_result": "The main idea is: Speak up against injustice and stereotypes.",
    "overall_classification": "PRESENTATION, INTERVIEW",
    "overall_sentiment": "POSITIVE",
    "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
  }
}