Trimble Navigation Catalyst API

The Catalyst API from Trimble Navigation — 2 operation(s) for catalyst.

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-catalyst-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-catalyst-api-openapi.yml Raw ↑
openapi: 3.0.3
info:
  title: Trimble Mobile Manager Catalyst 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: Catalyst
paths:
  /api/v1/catalyst/licenses:
    get:
      operationId: getCatalystLicenses
      summary: Get Catalyst Licenses
      description: Returns available Trimble Catalyst licenses for the connected DA2 receiver.
      tags:
      - Catalyst
      responses:
        '200':
          description: Available Catalyst licenses
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/CatalystLicense'
  /api/v1/catalyst/licenses/activate:
    post:
      operationId: activateCatalystLicense
      summary: Activate Catalyst License
      description: Activate a Trimble Catalyst On Demand license to enable precision corrections for the DA2 receiver.
      tags:
      - Catalyst
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
              - licenseId
              properties:
                licenseId:
                  type: string
                  description: Catalyst license identifier
      responses:
        '200':
          description: License activated
components:
  schemas:
    CatalystLicense:
      type: object
      description: Trimble Catalyst positioning accuracy license
      properties:
        id:
          type: string
          description: License identifier
        type:
          type: string
          enum:
          - Decimeter
          - Centimeter
          - Sub-Foot
          - Sub-Meter
          description: Accuracy level provided
        status:
          type: string
          enum:
          - Available
          - Active
          - Expired
        expiresAt:
          type: string
          format: date-time
  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.