Synchronous
The request blocks until processing completes. The result is returned directly in the response.Asynchronous
The request returns immediately with anentry_id and status: "pending". The result is delivered to your webhook URL when ready.
webhook object in the request body:
Batch
Submit up to 100 items in a single request. Returns abatch_id and total item count. Results are delivered via webhook.
incremental flag controls delivery:
| Value | Behavior |
|---|---|
true | A webhook is sent as each item completes. |
false | A single webhook is sent when the entire batch finishes. |