Table of Contents

Emission Insight API

 

By using Emission Insight API, your system can instantly provide accurate emissions, for each individual activity of a machine, in your organization’s daily operations. The requested information required by the Emission Insight calculation model to perform a calculation is based on information available to any company or planning system.

  • The complex made simple

    With the API, you replace the need for in-house capacity and expertise or external hiring to perform these complex calculations and analyses.

  • Always a calculation

    The reliability of the input data is checked and the quality of the calculation is fed back including the possibility to improve it. This enables your organization to enrich and improve its own data.

  • Validated

    Our Emission Insight API supports all major methods, factors and frameworks for calculations. Emission Insight calculations are compliant with EU regulations.

  • Data enrichment

    The API is ideal for companies looking to expand their database to include emissions calculations.

  • Accurate

    The API provides a reliable estimate, within a few percent of reality, of expected emissions.

Example

The outcomes of this example are only for demonstration and can’t be used.

				
					POST /v1/emissions HTTP/1.1
Host: api-emissioninsight.com
EmissionInsight-Auth-Key: [YourAuthKey]

{
    "calculationId": "899c750d-0020-4ce8-9dce-2c5c5d4ba99b",
    "calculationStatus": "Preliminary",
    "unitId": "DAF05",
    "type": "Truck",
    "brand": "Daf",
    "model": "TM48XS",
    "weight": 100,
    "year": 2004,
    "driveEngine": {
        "standard": "Euro",
        "power": 390,
        "powerUnit": "kW",
        "drive": "Variable",
        "fuel": "HVO_100"
    },
    "activity": {
        "drivingDistance": 500
    }
}
				
			
				
					Response
Status Code: 200 OK

{
  "calculationId": "899c750d-0020-4ce8-9dce-2c5c5d4ba99b",
  "calculationStatus": "Preliminary",
  "unitId": "DAF05",
  "emissions": {
    "CO2": 13.2,
    "NOx": 6.98,
    "PM": 0.15
  },
  "accuracyScore": {
    "CO2": 100,
    "NOx": 100,
    "PM": 100
  },
  "assumptions": [
    "The most appropriate assumption for driveEngine.class is Euro 3."
  ],
  "apiVersion": "v0.1-alpha",
  "eicmVersion": "4.2.2"
}