The chat responses are generated using Generative AI technology for intuitive search and may not be entirely accurate. They are not intended as professional advice. For full details, including our use rights, privacy practices and potential export control restrictions, please refer to our Generative AI Service Terms of Use and Generative AI Service Privacy Information. As this is a test version, please let us know if something irritating comes up. Like you get recommended a chocolate fudge ice cream instead of an energy managing application. If that occurs, please use the feedback button in our contact form!
Skip to content
Carbon Footprint Indicator

Standard multi modal routing proposal and calculates transport emissions for each transport leg in conformance with the GLEC framework.

Getting Started¶

To begin using the Carbon Footprint Indicator for Transportation API, follow these steps:

  1. Contact our support team to obtain an API Key. You can find our contact information here.
  2. Include your API Key in the x-api-key header of your HTTP requests.

Note

See the API Specifications for asynchronous (batch) methods.

Example Request¶

API_KEY = your-api-key

# Calculates routing for a shipments and applies emissions reporting.
curl -X 'POST' \
  'https://services.supplychainsuitedev.net/publicapi/master/glec_routing_relational/8' \
  -H 'accept: application/json' \
  -H 'x-api-key: ${API_KEY}' \
  -H 'Content-Type: application/json' \
   -d '{
  "Shipments": [
    {
      "Id": "1",
      "Sender_Id": "A",
      "Recipient_Id": "B",
      "Date": "2023-05-16T18:21:45Z",
      "Gross_Weight": 500,
      "Weight_Unit_Id": "kg",
      "Transport_Mode_Id": "Sea",
      "Equipment_Id": "40ft"
    }
  ],
  "Locations": [
    {
      "Id": "A",
      "Country": "DE",
      "Latitude": 52.52,
      "Longitude": 13.40
    },
    {
      "Id": "B",
      "Country": "US",
      "Latitude": 40.73,
      "Longitude": -73.93
    }
  ]
}'