v1

latestOpenAPI 3.0.02026-07-2693126.7 KB
Api
Jobs

Get job by ID

get/v1/jobs/{jobId}

Path parameters

jobIdstring required

Job ID to track the progress

Response

OR
OR

Example response

{
  "jobId": "fb16c565-f3f0-4402-a08c-9d44df0ccc7b",
  "createdAt": "2024-02-20T12:00:00Z",
  "updatedAt": "2024-02-20T12:00:00Z",
  "output": {
    "diarization": [
      {
        "speaker": "SPEAKER_00",
        "start": 15,
        "end": 30.5,
        "confidence": {
          "SPEAKER_00": 16,
          "SPEAKER_01": 93
        }
      }
    ],
    "confidence": {
      "score": [
        95,
        89,
        78,
        67,
        56,
        45,
        34,
        23,
        12,
        1
      ],
      "resolution": 0.02
    },
    "exclusiveDiarization": [
      {
        "speaker": "SPEAKER_00",
        "start": 15,
        "end": 30.5,
        "confidence": {
          "SPEAKER_00": 16,
          "SPEAKER_01": 93
        }
      }
    ],
    "wordLevelTranscription": [
      {
        "start": 0.5,
        "end": 0.8,
        "text": "Hello",
        "speaker": "SPEAKER_00"
      }
    ],
    "turnLevelTranscription": [
      {
        "start": 0.5,
        "end": 2.3,
        "text": "Hello, how are you?",
        "speaker": "SPEAKER_00"
      }
    ]
  }
}