> ## Documentation Index
> Fetch the complete documentation index at: https://docs.connectedfleet.michelin.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Quickstart guide

> Make your first API call and begin exploring the possibilities of your connected fleet.

<img className="block dark:hidden" src="https://mintcdn.com/mcf/Ul7ibxvOGnZAJxIU/images/welcome_banner.png?fit=max&auto=format&n=Ul7ibxvOGnZAJxIU&q=85&s=eea6fb74f433739995f397215e242bbe" width="1907" height="263" data-path="images/welcome_banner.png" />

<Steps>
  <Step title="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**.
  </Step>

  <Step title="Authenticate your request">
    The **myConnectedFleet** API requires authentication for all requests.\
    \
    Authentication requirements, credential formats, and header configuration are defined in the [Authentication](/essentials/preview/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](/essentials/preview/authentication) page.
  </Step>

  <Step title="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.
  </Step>

  <Step title="Now make your first call!">
    Use this curl to request the latest position of your fleet.

    ```bash theme={null}
    curl --request GET \
      --url https://api.connectedfleet.michelin.com/vehicle-tracking/public/v1/customer/{customerId}/tracking/live \
      --header 'Authorization: Bearer <bearer-token>'
    ```
  </Step>

  <Step title="Voila!">
    You made your first call.\
    The API response is JSON-encoded, see an example below;

    ```json theme={null}
    [
      {
        "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"
      }
    ]
    ```
  </Step>
</Steps>

Read more about the [REST API](/essentials/restAPI) and the feature that are available..
