Bear Robotics Robot System API

System-level operations and Queries for static robot configurations

Operations 2

POST /v0/robot-system-info/get #
POST /v1/system-command/run #

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/bear-robotics-robot-system-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

bear-robotics-robot-system-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Bear Cloud Robot System API
  description: "Bear Cloud APIs define the control, navigation, monitoring, and fleet management\n interface for robots."
  version: 1.3.0
servers:
- url: https://api.bearrobotics.ai
security:
- BearerAuth: []
tags:
- name: Robot System
  description: System-level operations and Queries for static robot configurations
paths:
  /v0/robot-system-info/get:
    post:
      tags:
      - Robot System
      description: "Get the overall robot system information.\n\n When called, the server returns robot system information. The system info\n tends to be static and does not change often."
      operationId: APIService_GetRobotSystemInfo
      requestBody:
        description: Robot identifier for system info retrieval
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
              - robotId
              properties:
                robotId:
                  type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetRobotSystemInfoResponse'
        '400':
          $ref: '#/components/responses/BadRequest'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '500':
          $ref: '#/components/responses/InternalServerError'
        '503':
          $ref: '#/components/responses/ServiceUnavailable'
        '504':
          $ref: '#/components/responses/GatewayTimeout'
  /v1/system-command/run:
    post:
      tags:
      - Robot System
      description: "Execute a OS-level command on a robot.\n\n When rebooting the robot, a response will return immediately to acknowledge\n the request but may take several minutes before the robot reconnects."
      operationId: APIService_RunSystemCommand
      requestBody:
        description: Robot identifier and system command to execute
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/RunSystemCommandRequest'
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RunSystemCommandResponse'
        '400':
          $ref: '#/components/responses/BadRequest'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '500':
          $ref: '#/components/responses/InternalServerError'
        '503':
          $ref: '#/components/responses/ServiceUnavailable'
        '504':
          $ref: '#/components/responses/GatewayTimeout'
components:
  responses:
    GatewayTimeout:
      description: Server-side timeout, usually caused by the failure to send/receive commands/responses to the designated robot.
    ServiceUnavailable:
      description: Service is temporarily unavailable, which can usually be resolved by backoff retries.
    Unauthorized:
      description: Unauthorized credentials, ensure the JWT is correct and up to date.
    BadRequest:
      description: Bad Request, usually caused by malfored request body.
      headers:
        grpc-status:
          schema:
            type: integer
          description: gRPC status code
        grpc-message:
          schema:
            type: string
          description: detailed error message
    InternalServerError:
      description: Internal Server Error
  schemas:
    SystemInfo:
      type: object
      properties:
        softwareVersion:
          type: string
          description: "The distribution version currently installed and running on the robot.\n e.g. \"servi-24.03\""
        robotFamily:
          type: integer
          format: enum
        robotId:
          type: string
          description: Unique identifier for the robot. e.g. "pennybot-abc123"
        displayName:
          type: string
          description: A user-friendly name for the robot, typically used for display purposes.
      description: SystemInfo contains various system-level data of a robot.
    RunSystemCommandRequest:
      type: object
      required:
      - robotId
      - systemCommand
      properties:
        robotId:
          type: string
        systemCommand:
          type: object
          oneOf:
          - properties:
              reboot:
                type: object
                required:
                - type
                properties:
                  type:
                    type: integer
                    format: enum
                    description: Reboot type (e.g. software-only or full power-cycle). TYPE_UNKNOWN (0) is not allowed.
            required:
            - reboot
          - properties:
              shutdown:
                type: object
                properties: {}
            required:
            - shutdown
      description: Request object for running system commands
    RunSystemCommandResponse:
      type: object
      properties: {}
    GetRobotSystemInfoResponse:
      type: object
      properties:
        systemInfo:
          $ref: '#/components/schemas/SystemInfo'
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: JWT token obtained from the /authorizeApiAccess endpoint