{ "opencollection": "1.0.0", "info": { "name": "Mistral AI Agents Batch Jobs API", "version": "1.0" }, "request": { "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "items": [ { "info": { "name": "Batch Jobs", "type": "folder" }, "items": [ { "info": { "name": "Mistral AI List batch jobs", "type": "http" }, "http": { "method": "GET", "url": "https://api.mistral.ai/v1/batch/jobs", "params": [ { "name": "page", "value": "", "type": "query", "description": "Page number for pagination" }, { "name": "page_size", "value": "", "type": "query", "description": "Number of items per page" }, { "name": "status", "value": "", "type": "query", "description": "Filter by job status" } ] }, "docs": "Retrieve a list of batch inference jobs for the authenticated account." }, { "info": { "name": "Mistral AI Create a batch job", "type": "http" }, "http": { "method": "POST", "url": "https://api.mistral.ai/v1/batch/jobs", "body": { "type": "json", "data": "{}" } }, "docs": "Create a new batch inference job. The input file must be a JSONL file with one request per line, uploaded via the Files API with purpose set to batch." }, { "info": { "name": "Mistral AI Get batch job details", "type": "http" }, "http": { "method": "GET", "url": "https://api.mistral.ai/v1/batch/jobs/:job_id", "params": [ { "name": "job_id", "value": "", "type": "path", "description": "The unique identifier of the batch job" } ] }, "docs": "Retrieve the current status and details of a batch job." }, { "info": { "name": "Mistral AI Cancel a batch job", "type": "http" }, "http": { "method": "POST", "url": "https://api.mistral.ai/v1/batch/jobs/:job_id/cancel", "params": [ { "name": "job_id", "value": "", "type": "path", "description": "The unique identifier of the batch job" } ] }, "docs": "Request cancellation of a running or queued batch job." } ] } ], "bundled": true }