Trimble Navigation System API

The System API from Trimble Navigation — 1 operation(s) for system.

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/trimble-navigation-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 email required.

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

OpenAPI Specification

trimble-navigation-system-api-openapi.yml Raw ↑
openapi: 3.0.3
info:
  title: Trimble Mobile Manager Catalyst System API
  description: The Trimble Mobile Manager (TMM) API provides developer interfaces for integrating high-accuracy GNSS positioning from connected Trimble receivers into custom mobile applications. Offers a local REST API for system information and WebSocket stream initiation, plus real-time GNSS position delivery via WebSocket. Supports Trimble Catalyst DA2, R580, R780, R12i, R980, and SP100 receivers. Runs locally on Android or iOS devices where Trimble Mobile Manager is installed.
  version: 1.0.0
  contact:
    url: https://developer.trimble.com/docs/mobile-manager/
servers:
- url: http://localhost:{apiPort}
  description: Local Trimble Mobile Manager API server (running on device)
  variables:
    apiPort:
      default: '8080'
      description: API port returned by tmmInfo endpoint
security:
- basicAuth: []
tags:
- name: System
paths:
  /api/v1/tmmInfo:
    get:
      operationId: getTmmInfo
      summary: Get TMM System Information
      description: Retrieve system information about the connected Trimble Mobile Manager instance, including the API port, WebSocket ports, connected receiver details, and version information.
      tags:
      - System
      responses:
        '200':
          description: TMM system information
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TmmInfo'
        '401':
          description: Unauthorized - invalid access code
components:
  schemas:
    TmmInfo:
      type: object
      description: Trimble Mobile Manager system information
      properties:
        version:
          type: string
          description: TMM application version
        apiPort:
          type: integer
          description: REST API port number
        v1SocketPort:
          type: integer
          description: WebSocket port for v1 basic position stream
        v2SocketPort:
          type: integer
          description: WebSocket port for v2 extended position stream (registered apps)
        receiverConnected:
          type: boolean
          description: Whether a GNSS receiver is currently connected
        platform:
          type: string
          enum:
          - Android
          - iOS
          description: Platform TMM is running on
  securitySchemes:
    basicAuth:
      type: http
      scheme: basic
      description: Access code generated using SHA256 hash of (applicationId + currentUTCTime), Base64 encoded. Valid for 1 second only. Must be regenerated per request.