curl --request GET \
--url https://api.example.com/api/v1/sessions/{session_id}/jobs/{job_id}/status \
--header 'Authorization: Bearer <token>'{
"job_id": "<string>",
"job_type": "<string>",
"status": "<string>",
"progress": 123,
"progress_detail": {},
"result": {},
"error": "<string>",
"created_at": 123,
"completed_at": 123
}Check the status of a background job associated with a session
curl --request GET \
--url https://api.example.com/api/v1/sessions/{session_id}/jobs/{job_id}/status \
--header 'Authorization: Bearer <token>'{
"job_id": "<string>",
"job_type": "<string>",
"status": "<string>",
"progress": 123,
"progress_detail": {},
"result": {},
"error": "<string>",
"created_at": 123,
"completed_at": 123
}Documentation Index
Fetch the complete documentation index at: https://bavlio.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Successful Response
Response model for job status check.
Job identifier
Type of job
Current job status
Job progress percentage
Detailed progress info (percentage, processed, failed, total) when available
Job result if completed
Error message if failed
Job creation timestamp
Job completion timestamp