Mistral AI · Schema

Mistral AI Batch Job

Schema for a Mistral AI batch job object, representing an asynchronous batch processing job with status tracking and result references.

Properties

Name Type Description
id string Unique identifier for the batch job.
object string The object type.
model string The model used for batch processing.
endpoint string The API endpoint used for each request in the batch.
input_files array File IDs containing input data in JSONL format.
status string The current status of the batch job.
created_at integer Unix timestamp when the job was created.
started_at integer Unix timestamp when the job started processing.
completed_at integer Unix timestamp when the job completed.
total_requests integer Total number of requests in the batch.
completed_requests integer Number of requests that have completed processing.
succeeded_requests integer Number of requests that succeeded.
failed_requests integer Number of requests that failed.
output_file string File ID of the output file containing successful results.
error_file string File ID of the error file containing failed request details.
metadata object Custom metadata associated with the batch job.
View JSON Schema on GitHub

JSON Schema

mistral-batch-job-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://mistral.ai/schemas/mistral-ai/batch-job.json",
  "title": "Mistral AI Batch Job",
  "description": "Schema for a Mistral AI batch job object, representing an asynchronous batch processing job with status tracking and result references.",
  "type": "object",
  "required": ["id", "model", "endpoint", "status"],
  "properties": {
    "id": {
      "type": "string",
      "format": "uuid",
      "description": "Unique identifier for the batch job."
    },
    "object": {
      "type": "string",
      "description": "The object type."
    },
    "model": {
      "type": "string",
      "description": "The model used for batch processing."
    },
    "endpoint": {
      "type": "string",
      "description": "The API endpoint used for each request in the batch.",
      "enum": [
        "/v1/chat/completions",
        "/v1/embeddings",
        "/v1/fim/completions",
        "/v1/moderations",
        "/v1/chat/moderations",
        "/v1/ocr",
        "/v1/classifications",
        "/v1/conversations",
        "/v1/audio/transcriptions"
      ]
    },
    "input_files": {
      "type": "array",
      "description": "File IDs containing input data in JSONL format.",
      "items": {
        "type": "string",
        "format": "uuid"
      }
    },
    "status": {
      "type": "string",
      "description": "The current status of the batch job.",
      "enum": [
        "QUEUED",
        "RUNNING",
        "SUCCESS",
        "FAILED",
        "TIMEOUT_EXCEEDED",
        "CANCELLATION_REQUESTED",
        "CANCELLED"
      ]
    },
    "created_at": {
      "type": "integer",
      "description": "Unix timestamp when the job was created."
    },
    "started_at": {
      "type": "integer",
      "description": "Unix timestamp when the job started processing."
    },
    "completed_at": {
      "type": "integer",
      "description": "Unix timestamp when the job completed."
    },
    "total_requests": {
      "type": "integer",
      "description": "Total number of requests in the batch.",
      "minimum": 0
    },
    "completed_requests": {
      "type": "integer",
      "description": "Number of requests that have completed processing.",
      "minimum": 0
    },
    "succeeded_requests": {
      "type": "integer",
      "description": "Number of requests that succeeded.",
      "minimum": 0
    },
    "failed_requests": {
      "type": "integer",
      "description": "Number of requests that failed.",
      "minimum": 0
    },
    "output_file": {
      "type": "string",
      "format": "uuid",
      "description": "File ID of the output file containing successful results."
    },
    "error_file": {
      "type": "string",
      "format": "uuid",
      "description": "File ID of the error file containing failed request details."
    },
    "metadata": {
      "type": "object",
      "description": "Custom metadata associated with the batch job.",
      "additionalProperties": {
        "type": "string"
      }
    }
  }
}

Work with this as data

Every JSON Schema here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for schemas

4 MCP tools reach this
  • find_json_schemasBrowse and filter every JSON Schema in the catalog.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This JSON Schema
curl "https://apis.io/api/v1/json-schemas/mistral-batch-job"
All schemas
curl "https://apis.io/api/v1/json-schemas?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.