Skip to main content
client.create_batch() and client.get_batch() currently return coming_soon placeholders.
batch = client.create_batch({
    "endpoint": "responses",
    "input_file_id": "file_123",
    "completion_window": "24h",
})

status = client.get_batch("batch_123")

print(batch)
print(status)
# {
#   "status": "coming_soon",
#   "endpoint": "batches",
#   "message": "This endpoint is not yet supported in the SDK.",
#   ...
# }
Last modified on February 17, 2026