- A read-only integration guide that explains the full batch and signed-webhook lifecycle without requiring a credential.
- API-key tools that submit a batch or query a batch that belongs to the configured API key account.
Read the guide first
Useapixo_get_batch_integration_guide before asking an agent to implement batch processing.
The guide never submits a task, reads account data, or returns a webhook secret.
Submit a batch
Useapixo_submit_batch after your agent has validated the model input with apixo_get_model_schema.
APIXO_API_KEY and calls the same Batch Generate API as a direct REST integration. It does not invent idempotency keys: supply stable business keys yourself.
Query a batch or one task
Useapixo_get_batch_status with the original model and returned batchId to inspect the entire batch. The result includes every clientItemId, accepted flag, taskId, current state, and terminal public result when available.
Use existing apixo_get_task_status with an accepted item’s taskId when you need to inspect one task independently.
Webhook boundary
apixo_submit_batch accepts an optional root-level webhook_url, but MCP does not retrieve, rotate, revoke, or return a signing secret. Set up the secret through the REST API or Dashboard, store it only on your server, then configure webhook_url when submitting the batch.
For the complete signing payload, headers, retry schedule, and receiver example, use the webhooks guide section or read Batch Webhooks.