Skip to main content
1

Get your credentials

You’ll need a username, password, and your customer account number.
If you don’t have these details, please ask your Account Manager.
2

Authenticate your request

The myConnectedFleet API requires authentication for all requests.

Authentication requirements, credential formats, and header configuration are defined in the Authentication section of this documentation.
Please refer to that page for implementation details. For details on how to authenticate and obtain the required credentials, please refer to the Authentication page.
3

Include your account identifier

Add your customer account number to the request URL.
This tells the API which account context to retrieve or modify data for.
4

Now make your first call!

Use this curl to request the latest poisition of your fleet.
curl --request GET \
  --url https://api.masternautconnect.com/connect-webservices/services/public/v1/customer/{customerId}/tracking/live \
  --header 'Authorization: Bearer <bearer-token>'
5

Voila!

You made your first call.
The API response is JSON-encoded, see an example below;
[
  {
    "assetRegistration": "TYOX-42-AK",
    "assetName": "TYOX-42-AK",
    "assetId": "2068071",
    "assetGroupId": "63f3433d0936060ea00a6ed8",
    "assetGroupName": "Sweden",
    "date": "2025-11-03T11:22:46",
    "eventType": "stopped",
    "odometer": 150800,
    "latitude": 60.08833,
    "longitude": 16.544203,
    "formattedAddress": "Åsvägen 19, 733 75 Sala, Sweden",
    "assetType": "VAN_SMALL"
  }
]
Read more about the REST API and the feature that are available..