Skip to main content

Cars Truecost | Climes API


This endpoint provides the truecost value for cars (upto 10 cars per request).

Request Parameters

Request Schema

This is the schema for the cars truecost api. Each request payload requires queries

Queries Schema

Each queries object has a cars array which requires individual car object.

Name DescriptionTypeOptional
carsThis is an array of individual cars whose truecost needs to be calculated.array
required

Cars Schema

Name DescriptionTypeOptional
car_idThis field has to generated and sent from your end. This has to be unique in order to map each car truecost data to its original request for tallying purposes.unique string
required
body_typeThe body type for this car, must be one of hatchback , sedan , suv , luxury_suv , luxury_sedanstring
required
fuel_typeThe fuel type of this car, must be one of petrol , diesel , cng , petrol_cng , electricstring
required
registration_yearThe year of registration of the car in YYYY formatnumber
required
mileageThe mileage of the car as a numbernumber
required
distance_travelledThe distance the car has travelled so farnumber
required

Endpoint

/v3/cars

Method

POST

Headers

{
'x-api-key': 'API_KEY',
'Content-Type': 'application/json'
}

Payload

{
"queries": {
"cars": [
{
"car_id": "10363087788",
"body_type": "suv",
"fuel_type": "diesel",
"registration_year": 2022,
"mileage": 20,
"distance_travelled": 10956
},
{
"car_id": "16977138789",
"body_type": "hatchback",
"fuel_type": "petrol",
"registration_year": 2017,
"mileage": 27.39,
"distance_travelled": 34976
}
]
}
}
caution

The length of the cars array should not be more than 10 individual objects per request.

Response Parameters

Response Schema

NameDescriptionType
messageA human readable string describing response for the given request.string
truecostThis object contains the calculated truecost values in tonnes CO2e for the request.object
car_idThe car_id that was sent during the request for each object requeststring
truecostCalculated truecost value in tonnes CO2e for that object of requestnumber
trees_plantedThe comparable value for trees planted for the truecost value for this objectnumber
caution

The error message is for your information, not the end users.
Please use the status codes and communicate the error to user accordingly
The API returns the first validation error that is encountered even if there are multiple errors with the request

Status Code

200

Response Data

{
"message": "Truecost calculated successfully",
"truecost": [
{
"car_id": "10363087788",
"truecost": 14886.5,
"trees_planted": 676.6590909090909
},
{
"car_id": "16977138789",
"truecost": 12711.75976633808,
"trees_planted": 577.8072621062764
}
]
}
tip

Here the response will be in the same order as the request values.

Sample Request

curl --location --request POST 'BASE_URL/v3/cars'  
--header 'x-api-key: API_KEY'
--header 'Content-Type: application/json'
--data-raw '{
"queries": {
"cars": [
{
"car_id": "10363087788",
"body_type": "suv",
"fuel_type": "diesel",
"registration_year": 2022,
"mileage": 20,
"distance_travelled": 10956
},
{
"car_id": "16977138789",
"body_type": "hatchback",
"fuel_type": "petrol",
"registration_year": 2017,
"mileage": 27.39,
"distance_travelled": 34976
}
]
}
}'

Sample Response

Below are sample responses for the above request.

Responses

{
"message": "Truecost calculated successfully",
"truecost": [
{
"car_id": "10363087788",
"truecost": 14886.5,
"trees_planed": 676.6590909090909
},
{
"car_id": "16977138789",
"truecost": 12711.75976633808,
"trees_planed": 577.8072621062764
}
]
}