Check Proofread Job Status
GET
https://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
| TIME | STATUS | USER AGENT |
|---|---|---|
| Make a request to see history. | ||
0 Requests This Month
Path Parameter
| Parameter | Type | Description |
|---|---|---|
| proofread_id | string | Unique identifier for the proofread operation (required) |
Response Structure
| Field | Type | Description |
|---|---|---|
| proofread_id | string | Unique ID for the proofread job |
| status | string | Current status: "processing" (in progress), or "completed" (finished) |
| details | string | Additional information about the proofread status, if available |
| submitted_for_review | boolean | Indicates 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
LANGUAGE
CREDENTIALS
HEADER
RESPONSE
Examples
Choose an example:
application/json
200 - Success
404 - Not Found