API Documentation

This API endpoint is designed to retrieve data points for any company in our database. For details on available companies and data points, please contact our team.

 

Get Company Data API Endpoint

POST "https://api.climatetrackerinitiative.org/v1/get-company-data"
 

Example Request:


                POST /v1/get-company-data
                Content-Type: application/json
                Authorization: "Bearer API Token"
                {
                "company_name": “Telefonaktiebolaget LM Ericsson”
                }
                

Example Response (Success):


              {
               "status": true,
                "response": [{
                "Scope 1": "144 321",
                "Scope 2 (Market Based)": "144 321",
                "Scope 3 (As reported)": "144 321"
               }]
              }
                

 

The data points available in your response depend on your CTI account access level. We offer a wide range of data points, and you’ll receive documentation tailored to you. To learn more, please reach out to us.

 

Example Response (Error):


              {
                "status": Error,
                "msg": "Error Message"
              }
                

Example Response (Invalid Request):


             {
                "status": false,
                "msg": "Company name invalid",
              }
                

Body (Invalid Request):


            {
                "company_name": “Enter the name of the company”
            }