Skip to main content

Get Climes Projects | Climes API


This endpoint fetches all the projects available at Climes.

caution

This will send only those projects which are available. Any of the projects can be removed subject to availability.

Request Parameters

Endpoint

/v3/integrations/projects

Method

GET

Headers

{
'x-api-key' : 'API_KEY'
}

Response Parameters

Response Schema

Each response is an array which has individual project object

Project Schema

NameDescriptionType
titleThis is the title of project.string
project_idThis is the unique id of the project which can be used while sending orders to send climes of that order to selected project.string
typeIt is the type of the project.string
locationThis is the location at which the project is located.string
main_imageThis is the url of the main image for the project.string
project_developerThis is the developer of the project.string
registry_nameThis is the registry name which have verified the generation of credit.string

Status Code

200

Response Data

[
{
"title": "Making biodiverse forests financially viable for farmers",
"project_id": "farmers-for-forests",
"type": "Reforestation",
"location": "Ahmednagar, Maharashtra",
"main_image": "https://cdn.images.climes.io/projects-new/f4f_cardimage.png?ik-sdk-version=javascript-1.4.3&updatedAt=1656931774908",
"project_developer": "Farmers for Forests",
"registry_name": "Climes"
},
{
"title": "Agroforestry to combat land degradation in Karnataka",
"project_id": "say-trees",
"type": "Reforestation",
"location": "Tumakuru, Karnataka",
"main_image": "https://cdn.images.climes.io/projects-new/SayTrees_cardimage.png?ik-sdk-version=javascript-1.4.3&updatedAt=1656931775394",
"project_developer": "SayTrees",
"registry_name": "Climes"
},
{
"title": "Waste to Energy by Mahindra WES LTD",
"project_id": "waste-to-energy-mahindra",
"type": "Waste to Energy",
"location": "Maharashtra",
"main_image": "https://cdn.images.climes.io/projects-new/WTE_Mahindra_cardimage.png?ik-sdk-version=javascript-1.4.3&updatedAt=1656931774926",
"project_developer": "Mahindra Wes Ltd.",
"registry_name": "Verra"
}
]

Sample Request

curl --location --request GET 'BASE_URL/v3/integrations/projects'  
--header 'x-api-key: API_KEY'

Sample Response

Below are sample responses for the above sample request.

Responses

[
{
"title": "Making biodiverse forests financially viable for farmers",
"project_id": "farmers-for-forests",
"type": "Reforestation",
"location": "Ahmednagar, Maharashtra",
"main_image": "https://cdn.images.climes.io/projects-new/f4f_cardimage.png?ik-sdk-version=javascript-1.4.3&updatedAt=1656931774908",
"project_developer": "Farmers for Forests",
"registry_name": "Climes"
},
{
"title": "Agroforestry to combat land degradation in Karnataka",
"project_id": "say-trees",
"type": "Reforestation",
"location": "Tumakuru, Karnataka",
"main_image": "https://cdn.images.climes.io/projects-new/SayTrees_cardimage.png?ik-sdk-version=javascript-1.4.3&updatedAt=1656931775394",
"project_developer": "SayTrees",
"registry_name": "Climes"
},
{
"title": "Waste to Energy by Mahindra WES LTD",
"project_id": "waste-to-energy-mahindra",
"type": "Waste to Energy",
"location": "Maharashtra",
"main_image": "https://cdn.images.climes.io/projects-new/WTE_Mahindra_cardimage.png?ik-sdk-version=javascript-1.4.3&updatedAt=1656931774926",
"project_developer": "Mahindra Wes Ltd.",
"registry_name": "Verra"
}
]