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

Retrieves the current status and results of an 'ask-questions' job. Jobs are automatically deleted after 30 days.

Request path & query params
JOB_ID
string
get
200
https://api.mux.com/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": "Is this video about glasses?"
        },
        {
          "question": "What is the primary subject?",
          "answer_options": [
            "glasses",
            "watches",
            "shoes",
            "hats"
          ]
        },
        {
          "question": "Describe the primary subject in one sentence.",
          "free_form_reply": true
        }
      ],
      "max_free_form_answer_length": 300
    },
    "outputs": {
      "answers": [
        {
          "question": "Is this video about glasses?",
          "answer": "no",
          "confidence": 0.92,
          "reasoning": "No glasses appear on screen and the narration does not mention eyewear.",
          "skipped": false
        },
        {
          "question": "What is the primary subject?",
          "answer": "watches",
          "confidence": 0.88,
          "reasoning": "Multiple wristwatches are featured prominently throughout the video.",
          "skipped": false
        },
        {
          "question": "Describe the primary subject in one sentence.",
          "answer": "A close-up showcase of luxury wristwatches arranged on a wooden display.",
          "confidence": 0.86,
          "reasoning": "Visual evidence shows several wristwatches displayed against a wooden backdrop with no other competing subjects.",
          "skipped": false
        }
      ]
    }
  }
}