Check Proofread Job Status

GEThttps://api.konpro.ai/v1/video_translate/proofread/status/{proofread_id}

Track the current status and details of a specific video proofread request using the unique proofread ID.

Request History

Log in to see full request history

TIMESTATUSUSER AGENT
Make a request to see history.

0 Requests This Month

Path Parameter

ParameterTypeDescription
proofread_idstringUnique identifier for the proofread operation (required)

Response Structure

FieldTypeDescription
proofread_idstringUnique ID for the proofread job
statusstringCurrent status: "processing" (in progress), or "completed" (finished)
detailsstringAdditional information about the proofread status, if available
submitted_for_reviewbooleanIndicates if the job has been submitted for further review (default: false)

cURL Request

shell
curl --request GET \
--url https://api.konpro.ai/v1/video_translate/proofread/status/<proofread_id> \
--header 'accept: application/json' \
--header 'x-api-key: <your-api-key>'

Example (Processing)

json
{
  "error": null,
  "data": {
    "proofread_id": "abc123def456",
    "status": "processing",
    "details": null,
    "submitted_for_review": false
  }
}

Example (Completed)

json
{
  "error": null,
  "data": {
    "proofread_id": "abc123def456",
    "status": "completed",
    "details": "Final review complete.",
    "submitted_for_review": true
  }
}

LANGUAGE

CREDENTIALS

HEADER

RESPONSE

Examples

Choose an example:

application/json
200 - Success
404 - Not Found