Viam Provisioning API

Bootstrap a smart machine onto Wi-Fi and into the viam.app cloud over Bluetooth or hotspot. SetNetworkCredentials, SetSmartMachineCredentials, GetNetworkList, GetSmartMachineStatus, and ExitProvisioning are used by the Flutter provisioning widgets and viam-agent.

Documentation

Specifications

Other Resources

🔗
Protobuf
https://github.com/viamrobotics/api/blob/main/proto/viam/provisioning/v1/provisioning.proto
🔗
APIsJSON
https://raw.githubusercontent.com/api-evangelist/viam/refs/heads/main/apis.yml
🔗
Arazzo
https://raw.githubusercontent.com/api-evangelist/viam/refs/heads/main/arazzo/viam-add-machine-with-part-workflow.yml
🔗
Arazzo
https://raw.githubusercontent.com/api-evangelist/viam/refs/heads/main/arazzo/viam-arm-move-and-verify-workflow.yml
🔗
Arazzo
https://raw.githubusercontent.com/api-evangelist/viam/refs/heads/main/arazzo/viam-bill-customer-location-workflow.yml
🔗
Arazzo
https://raw.githubusercontent.com/api-evangelist/viam/refs/heads/main/arazzo/viam-curate-dataset-workflow.yml
🔗
Arazzo
https://raw.githubusercontent.com/api-evangelist/viam/refs/heads/main/arazzo/viam-data-pipeline-lifecycle-workflow.yml
🔗
Arazzo
https://raw.githubusercontent.com/api-evangelist/viam/refs/heads/main/arazzo/viam-fragment-rollout-workflow.yml
🔗
Arazzo
https://raw.githubusercontent.com/api-evangelist/viam/refs/heads/main/arazzo/viam-machine-health-check-workflow.yml
🔗
Arazzo
https://raw.githubusercontent.com/api-evangelist/viam/refs/heads/main/arazzo/viam-onboard-org-member-workflow.yml
🔗
Arazzo
https://raw.githubusercontent.com/api-evangelist/viam/refs/heads/main/arazzo/viam-provision-fleet-workflow.yml
🔗
Arazzo
https://raw.githubusercontent.com/api-evangelist/viam/refs/heads/main/arazzo/viam-provision-smart-machine-workflow.yml
🔗
Arazzo
https://raw.githubusercontent.com/api-evangelist/viam/refs/heads/main/arazzo/viam-saved-query-lifecycle-workflow.yml
🔗
Arazzo
https://raw.githubusercontent.com/api-evangelist/viam/refs/heads/main/arazzo/viam-train-and-monitor-model-workflow.yml

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-provisioning-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 email required.

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

OpenAPI Specification

viam-provisioning-api-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: Viam Billing Arm Provisioning API
  description: 'REST/JSON transcoding of the Viam BillingService gRPC API. Retrieve current-month

    usage, invoice summaries, invoice PDFs, billing tiers, and the location-level billing

    organization assignment used by Viam''s "build a robotics business" features.


    Canonical contract: https://github.com/viamrobotics/api/blob/main/proto/viam/app/v1/billing.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: Provisioning
  description: Network and cloud credentials onboarding.
paths:
  /viam.provisioning.v1.ProvisioningService/GetSmartMachineStatus:
    post:
      summary: Viam Get Smart Machine Status
      description: Retrieve the device's provisioning status (network connectivity, cloud config).
      operationId: getSmartMachineStatus
      tags:
      - Provisioning
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
      responses:
        '200':
          description: Successful response.
  /viam.provisioning.v1.ProvisioningService/SetNetworkCredentials:
    post:
      summary: Viam Set Network Credentials
      description: Submit Wi-Fi credentials to the device.
      operationId: setNetworkCredentials
      tags:
      - Provisioning
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
              - type
              - ssid
              - psk
              properties:
                type:
                  type: string
                  enum:
                  - wifi
                ssid:
                  type: string
                psk:
                  type: string
      responses:
        '200':
          description: Successful response.
  /viam.provisioning.v1.ProvisioningService/SetSmartMachineCredentials:
    post:
      summary: Viam Set Smart Machine Credentials
      description: Submit Viam cloud credentials (machine part secret + cloud config URL) to the device.
      operationId: setSmartMachineCredentials
      tags:
      - Provisioning
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
              - cloud
              properties:
                cloud:
                  type: object
                  properties:
                    id:
                      type: string
                    secret:
                      type: string
                    app_address:
                      type: string
      responses:
        '200':
          description: Successful response.
  /viam.provisioning.v1.ProvisioningService/GetNetworkList:
    post:
      summary: Viam Get Network List
      description: List Wi-Fi networks visible to the device.
      operationId: getNetworkList
      tags:
      - Provisioning
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
      responses:
        '200':
          description: Successful response.
  /viam.provisioning.v1.ProvisioningService/ExitProvisioning:
    post:
      summary: Viam Exit Provisioning
      description: Exit the provisioning service after the device is configured.
      operationId: exitProvisioning
      tags:
      - Provisioning
      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.