from meibel import MeibelClient
client = MeibelClient(api_key="your-api-key")
# Create request body
body = TransformDocumentRequest(name="Example")
result = client.documents.submit_transform(body=body)
print(result){
"execution_id": "<string>"
}Submit a document for AI-powered extraction and return immediately. Poll for completion via client.sessions.get(execution_id).
from meibel import MeibelClient
client = MeibelClient(api_key="your-api-key")
# Create request body
body = TransformDocumentRequest(name="Example")
result = client.documents.submit_transform(body=body)
print(result){
"execution_id": "<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.
File path, URL, or GCS URI to transform
Schema name/ID or inline JSON Schema
LLM model override
Extraction instructions override
Prompt template reference
Max wait time in seconds (sync only)
Successful Response
Poll via client.sessions.get(execution_id)
Was this page helpful?