Privacy Policy

1. Introduction

This Privacy Policy describes how we collect, use, and protect your personal information when you use our chatbot, which interacts with the Gemini AI API and stores your questions in our database.

2. Information Collected

When using our chatbot, we collect the following types of information:

  • Conversation Information: All messages you send and receive through the chatbot.
  • Identification Data: We may collect data such as IP address and geographic location information.

3. Use of Information

The information collected is used for the following purposes:

  • Interaction with the AI API: Your messages are sent to the Gemini API to generate appropriate responses.
  • Question Storage: Your questions are stored in our database for analysis and service improvement purposes.

4. Information Sharing

We do not share your personal information with third parties, except in the following cases:

  • Service Providers: We may share information with vendors who help us operate our service, such as the Gemini API.
  • Legal Compliance: We may disclose information to comply with legal obligations or respond to legal processes.

5. Information Security

We implement appropriate security measures to protect your information from unauthorized access, alteration, disclosure, or destruction. These measures include:

  • Encryption: Use of encryption to protect data in transit.
  • Restricted Access: Access to information is limited to employees and partners who need this information to operate our service.

6. Your Rights

You have the right to:

  • Access and Correct: Request access to your personal information and correct inaccurate data.
  • Delete Data: Request the deletion of your personal information, subject to certain conditions.
  • Withdraw Consent: Withdraw your consent to the processing of your personal information.

7. Changes to the Privacy Policy

We reserve the right to update this Privacy Policy at any time. We will notify you of any significant changes through our website or other appropriate communication channels.

8. Contact

If you have any questions about this Privacy Policy, please contact us at [email protected]

9. Consent

By using our service, you agree to the collection and use of your information as described in this Privacy Policy.

This Privacy Policy has been created to ensure that your personal information is treated with security and respect. We appreciate your trust and are committed to protecting your privacy.

Toll

Example – Discounted tolls through automatic payment

Some toll plazas offer a percentage discount for users who use automatic payment methods, known as TAG or TelePeaje.

In Brazil, this percentage is 5% off and is available to only a few dealerships that offer the service. This percentage may vary in other countries. In Argentina, for example, the Caminos del Río Uruguay dealership offers a 15% discount to users who use the tag, or TelePeaje.

In the following example, we have a route using a single-axle truck that passes through the Parapuã toll, in Brazil, which offers a 5% discount.

Request

The following parameters will be required to obtain the value with the TAG discount already applied:

  • vehicleType – Type of vehicle to be considered, in the example it will be TRUCK_WITH_TWO_DOUBLE_AXLES;
  • conditions – Object that indicates which values ​​should be considered for tolls where there are conditional values, such as in this example a discounted value for vehicles with TAG:
    • period – Indicates the period that should be considered to return the exact toll value. In this case, the route will be carried out on a normal day, so the value used in this example will be NORMAL.
    • billingType – Indicates the type of charge that should be considered. The value to be used in this example should be TAG.

Request with Independent endpoint

{
    "legs": [
        {
            "points": "`fidCffqtHo@t@u@hAm@p@yCvEe@v@aBvBqAjBeA~A",
            "vehicleType": "TRUCK_WITH_TWO_DOUBLE_AXLES",
            "condition": {
                "period": "NORMAL",
                "billingType": "TAG"
            }
        }
    ]
}

Request with Trip API

{
    "calculationMode": "THE_FASTEST",
    "points": [
        {
            "siteId": "Point 1",
            "latitude": -21.843015408682692,
            "longitude": -50.71983853381955
        },
        {
            "siteId": "Point 2",
            "latitude": -21.840092392777727,
            "longitude": -50.72374936513232
        }
    ],
    "toll": {
        "vehicleType": "TRUCK_WITH_TWO_DOUBLE_AXLES",
        "condition": {
            "period": "NORMAL",
            "billingType": "TAG"
        }
    }
}

Response

Response with Independent endpoint

{
    "legs": [
        {
            "tolls": [
                {
                    "id": "828",
                    "name": "Pedágio - Parapuã",
                    "address": "SP294, KM551+500",
                    "city": "Parapuã",
                    "state": {
                        "name": "São Paulo",
                        "code": "SP"
                    },
                    "country": "Brasil",
                    "concession": "Eixo-SP",
                    "direction": "WEST",
                    "coordinates": {
                        "latitude": -21.840998367867602,
                        "longitude": -50.722601401095574
                    },
                    "serviceTypes": [
                        {
                            "serviceId": "791",
                            "name": "Via Facil"
                        },
                        {
                            "serviceId": "35352945515000103",
                            "name": "ANTTCODE"
                        }
                    ],
                    "price": 19.76
                }
            ],
            "legTotalCost": 19.76,
            "vehicleType": "TRUCK_WITH_TWO_DOUBLE_AXLES",
            "condition": {
                "billingType": "TAG",
                "period": "NORMAL"
            },
            "calculationDate": 1738853654511
        }
    ],
    "totalCost": 19.76
}

Response with Trip API

{
  "id": "67a4ccd6361dc514265d966f",
  "clientId": "maplink",
  "totalDistance": 518,
  "totalNominalDuration": 37,
  "averageSpeed": 64.8,
  "tollCosts": 19.76,
  "legs": [
      {
          "distance": 518,
          "nominalDuration": 37,
          "averageSpeed": 64.8,
          "points": "`fidCffqtHo@t@u@hAm@p@yCvEe@v@aBvBqAjBeA~A",
          "tollCalculation": {
              "tolls": [
                  {
                      "id": "828",
                      "name": "Pedágio - Parapuã",
                      "address": "SP294, KM551+500",
                      "city": "Parapuã",
                      "state": {
                          "name": "São Paulo",
                          "code": "SP"
                      },
                      "country": "Brasil",
                      "concession": "Eixo-SP",
                      "direction": "WEST",
                      "coordinates": {
                          "latitude": -21.840998367867602,
                          "longitude": -50.722601401095574
                      },
                      "serviceTypes": [
                          {
                              "serviceId": "791",
                              "name": "Via Facil"
                          },
                          {
                              "serviceId": "35352945515000103",
                              "name": "ANTTCODE"
                          }
                      ],
                      "price": 19.76
                  }
              ],
              "legTotalCost": 19.76,
              "vehicleType": "TRUCK_WITH_TWO_DOUBLE_AXLES",
              "calculationDate": 1738853590334,
              "condition": {
                  "billingType": "TAG",
                  "period": "NORMAL"
              }
          }
      }
  ],
  "crossedBorders": [],
  "source": "MAPLINK",
  "createdAt": 1738853590348,
  "expiryIn": 1739458390249
}