Trimble Geocoding API

Address and coordinate conversion

Operations 2

GET /Service.svc/geocode Geocode an address #
GET /Service.svc/reverseGeocode Reverse geocode coordinates to address #

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-geocoding-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

trimble-geocoding-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Trimble Maps Geocoding API
  description: The Trimble Maps API (formerly ALK Technologies PC*MILER) provides interactive mapping and routing solutions optimized for commercial vehicles and transportation. Enables truck-specific routing, geocoding, map tile rendering, and turn-by-turn navigation services across North America, Europe, and global markets.
  version: '2.0'
  contact:
    name: Trimble Maps Developer Support
    url: https://maps.trimble.com
servers:
- url: https://pcmiler.alk.com/apis/rest/v1.0
  description: Trimble PC*MILER API v1 (North America)
- url: https://maps.trimble.com/api/v1
  description: Trimble Maps API v1
security:
- ApiKeyHeader: []
tags:
- name: Geocoding
  description: Address and coordinate conversion
paths:
  /Service.svc/geocode:
    get:
      operationId: geocodeAddress
      summary: Geocode an address
      description: Converts a street address or city/state/zip to geographic coordinates using Trimble's commercial vehicle map database.
      tags:
      - Geocoding
      parameters:
      - name: addr
        in: query
        required: true
        description: Address to geocode (street, city, state/province, zip, country)
        schema:
          type: string
        example: 1 Infinite Loop, Cupertino, CA 95014
      - name: region
        in: query
        schema:
          type: string
          enum:
          - NA
          - EU
          - SA
          - AF
          - AS
          - OC
          default: NA
        description: Geographic region
      - name: outputFormat
        in: query
        schema:
          type: string
          enum:
          - json
          - xml
          default: json
      responses:
        '200':
          description: Geocoded location
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GeocodeResponse'
  /Service.svc/reverseGeocode:
    get:
      operationId: reverseGeocode
      summary: Reverse geocode coordinates to address
      description: Converts geographic coordinates (lat/lng) to a nearest street address.
      tags:
      - Geocoding
      parameters:
      - name: coords
        in: query
        required: true
        description: Latitude and longitude as "lat,lng"
        schema:
          type: string
        example: 37.3318,-122.0312
      - name: region
        in: query
        schema:
          type: string
          enum:
          - NA
          - EU
          - SA
          default: NA
      responses:
        '200':
          description: Reverse geocoded address
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AddressResponse'
components:
  schemas:
    Coords:
      type: object
      properties:
        Lat:
          type: number
          minimum: -90
          maximum: 90
        Lon:
          type: number
          minimum: -180
          maximum: 180
    AddressResponse:
      type: object
      properties:
        Address:
          type: string
        City:
          type: string
        State:
          type: string
        Zip:
          type: string
        Country:
          type: string
        Coords:
          $ref: '#/components/schemas/Coords'
    GeocodeResponse:
      type: object
      properties:
        Lat:
          type: number
        Lon:
          type: number
        Address:
          type: string
        City:
          type: string
        State:
          type: string
        Zip:
          type: string
        Country:
          type: string
        Quality:
          type: string
          enum:
          - Exact
          - Interpolated
          - City
          - Zip
          - State
          - Country
  securitySchemes:
    ApiKeyHeader:
      type: apiKey
      in: header
      name: Authorization
      description: 'Format: ALK apiKey'