Skip to Content
Get a 'find-key-moments' job
get

Retrieves the current status and results of a 'find-key-moments' job.

Request path & query params
JOB_ID
string
get
200
/robots/v0/jobs/find-key-moments/{JOB_ID}
Response
(application/json)
{
  "data": {
    "id": "rjob_example123",
    "workflow": "find-key-moments",
    "status": "completed",
    "units_consumed": 1,
    "created_at": 1700000000,
    "updated_at": 1700000060,
    "parameters": {
      "asset_id": "mux_asset_123abc",
      "max_moments": 5,
      "target_duration_ms": {
        "min": 15000,
        "max": 45000
      }
    },
    "outputs": {
      "moments": [
        {
          "start_ms": 15000,
          "end_ms": 45000,
          "cues": [
            {
              "start_ms": 15000,
              "end_ms": 20000,
              "text": "This is the moment everything changed."
            },
            {
              "start_ms": 20000,
              "end_ms": 30000,
              "text": "We realized the entire approach was wrong."
            }
          ],
          "overall_score": 0.92,
          "title": "The Pivotal Realization",
          "audible_narrative": "The speaker describes the turning point that reshaped the project direction.",
          "notable_audible_concepts": [
            "pivotal realization moment",
            "project direction change"
          ]
        }
      ]
    }
  }
}