from meibel import MeibelClient
client = MeibelClient(api_key="your-api-key")
result = client.documents.get_status("job_id_value")
print(result){
"job_id": "<string>",
"status": "<string>",
"format": "<string>",
"pages": 123,
"elements": 123,
"tables": 123,
"confidence": 123,
"processing_time_ms": 123,
"error": "<string>"
}Check the status of a document parsing job, including progress statistics.
from meibel import MeibelClient
client = MeibelClient(api_key="your-api-key")
result = client.documents.get_status("job_id_value")
print(result){
"job_id": "<string>",
"status": "<string>",
"format": "<string>",
"pages": 123,
"elements": 123,
"tables": 123,
"confidence": 123,
"processing_time_ms": 123,
"error": "<string>"
}Documentation Index
Fetch the complete documentation index at: https://docs.meibel.ai/llms.txt
Use this file to discover all available pages before exploring further.
Successful Response
Returned from GET /documents/{job_id}.
Was this page helpful?