Viam Training Jobs API

Built-in TFLite trainers and custom containerized trainers.

Operations 8

POST /viam.app.mltraining.v1.MLTrainingService/SubmitTrainingJob Viam Submit Training Job #
POST /viam.app.mltraining.v1.MLTrainingService/SubmitCustomTrainingJob Viam Submit Custom Training Job #
POST /viam.app.mltraining.v1.MLTrainingService/GetTrainingJob Viam Get Training Job #
POST /viam.app.mltraining.v1.MLTrainingService/ListTrainingJobs Viam List Training Jobs #
POST /viam.app.mltraining.v1.MLTrainingService/CancelTrainingJob Viam Cancel Training Job #
POST /viam.app.mltraining.v1.MLTrainingService/DeleteCompletedTrainingJob Viam Delete Completed Training Job #
POST /viam.app.mltraining.v1.MLTrainingService/GetTrainingJobLogs Viam Get Training Job Logs #
POST /viam.app.mltraining.v1.MLTrainingService/ListSupportedContainers Viam List Supported Containers #

Documentation

Specifications

Schemas & Data

Other Resources

Work with this as data

Every API 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 apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • 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 API
curl "https://apis.io/api/v1/apis/viam-training-jobs-api"
All apis
curl "https://apis.io/api/v1/apis?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.

OpenAPI Specification

viam-training-jobs-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Viam ML Training Training Jobs API
  description: 'REST/JSON transcoding of the Viam MLTrainingService gRPC API. Submit, monitor, and

    manage cloud-hosted ML training jobs that produce models deployable to viam-server.


    Canonical contract: https://github.com/viamrobotics/api/blob/main/proto/viam/app/mltraining/v1/ml_training.proto

    '
  version: '2026.05'
  contact:
    name: Viam Support
    url: https://www.viam.com/contact
servers:
- url: https://app.viam.com
  description: Viam production cloud.
security:
- ApiKeyAuth: []
tags:
- name: Training Jobs
  description: Built-in TFLite trainers and custom containerized trainers.
paths:
  /viam.app.mltraining.v1.MLTrainingService/SubmitTrainingJob:
    post:
      summary: Viam Submit Training Job
      description: Submit a built-in TFLite training job against a dataset.
      operationId: submitTrainingJob
      tags:
      - Training Jobs
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
              - organization_id
              - dataset_id
              - model_name
              - model_type
              properties:
                organization_id:
                  type: string
                dataset_id:
                  type: string
                model_name:
                  type: string
                model_version:
                  type: string
                model_type:
                  type: string
                  enum:
                  - single_label_classification
                  - multi_label_classification
                  - object_detection
                tags:
                  type: array
                  items:
                    type: string
      responses:
        '200':
          description: Successful response.
          content:
            application/json:
              schema:
                type: object
                properties:
                  id:
                    type: string
  /viam.app.mltraining.v1.MLTrainingService/SubmitCustomTrainingJob:
    post:
      summary: Viam Submit Custom Training Job
      description: Submit a custom containerized training job (registry container) against a dataset.
      operationId: submitCustomTrainingJob
      tags:
      - Training Jobs
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
              - organization_id
              - dataset_id
              - registry_item_id
              - model_name
              properties:
                organization_id:
                  type: string
                dataset_id:
                  type: string
                registry_item_id:
                  type: string
                registry_item_version:
                  type: string
                model_name:
                  type: string
                model_version:
                  type: string
                arguments:
                  type: object
      responses:
        '200':
          description: Successful response.
  /viam.app.mltraining.v1.MLTrainingService/GetTrainingJob:
    post:
      summary: Viam Get Training Job
      description: Retrieve a training job by id.
      operationId: getTrainingJob
      tags:
      - Training Jobs
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
              - id
              properties:
                id:
                  type: string
      responses:
        '200':
          description: Successful response.
  /viam.app.mltraining.v1.MLTrainingService/ListTrainingJobs:
    post:
      summary: Viam List Training Jobs
      description: List training jobs scoped to an organization.
      operationId: listTrainingJobs
      tags:
      - Training Jobs
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
              - organization_id
              properties:
                organization_id:
                  type: string
                status:
                  type: string
                  enum:
                  - unspecified
                  - pending
                  - in_progress
                  - completed
                  - failed
                  - canceled
                  - canceling
      responses:
        '200':
          description: Successful response.
  /viam.app.mltraining.v1.MLTrainingService/CancelTrainingJob:
    post:
      summary: Viam Cancel Training Job
      description: Cancel a pending or running training job.
      operationId: cancelTrainingJob
      tags:
      - Training Jobs
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
              - id
              properties:
                id:
                  type: string
      responses:
        '200':
          description: Successful response.
  /viam.app.mltraining.v1.MLTrainingService/DeleteCompletedTrainingJob:
    post:
      summary: Viam Delete Completed Training Job
      description: Permanently delete a completed training job and its artifacts.
      operationId: deleteCompletedTrainingJob
      tags:
      - Training Jobs
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
              - id
              properties:
                id:
                  type: string
      responses:
        '200':
          description: Successful response.
  /viam.app.mltraining.v1.MLTrainingService/GetTrainingJobLogs:
    post:
      summary: Viam Get Training Job Logs
      description: Retrieve logs for a training job.
      operationId: getTrainingJobLogs
      tags:
      - Training Jobs
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
              - id
              properties:
                id:
                  type: string
      responses:
        '200':
          description: Successful response.
  /viam.app.mltraining.v1.MLTrainingService/ListSupportedContainers:
    post:
      summary: Viam List Supported Containers
      description: List the container images supported as custom training environments.
      operationId: listSupportedContainers
      tags:
      - Training Jobs
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
      responses:
        '200':
          description: Successful response.
components:
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: key
      description: Viam API key.