Skip to Content
Get an 'ask-questions' job
get

Retrieves the current status and results of an 'ask-questions' job.

Request path & query params
JOB_ID
string
get
200
/robots/v0/jobs/ask-questions/{JOB_ID}
Response
(application/json)
{
  "data": {
    "id": "rjob_example123",
    "workflow": "ask-questions",
    "status": "completed",
    "units_consumed": 1,
    "created_at": 1700000000,
    "updated_at": 1700000060,
    "parameters": {
      "asset_id": "mux_asset_123abc",
      "questions": [
        {
          "question": "How many people are speaking on camera?",
          "answer_options": [
            "one",
            "two",
            "three or more"
          ]
        }
      ]
    },
    "outputs": {
      "answers": [
        {
          "question": "Is there a person speaking on camera?",
          "answer": "yes",
          "confidence": 0.95,
          "reasoning": "A person is clearly visible speaking directly to the camera throughout the video.",
          "skipped": false
        }
      ]
    }
  }
}