from meibel import MeibelClient
client = MeibelClient(api_key="your-api-key")
result = client.documents.list_children("job_id_value")
print(result)[
{
"job_id": "<string>",
"filename": "<string>",
"status": "<string>",
"media_type": "<string>"
}
]For container files (ZIP, TAR, EML), list the child documents extracted from the container.
from meibel import MeibelClient
client = MeibelClient(api_key="your-api-key")
result = client.documents.list_children("job_id_value")
print(result)[
{
"job_id": "<string>",
"filename": "<string>",
"status": "<string>",
"media_type": "<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.
Was this page helpful?