Find carbon projects by methodology category

You can search for carbon projects listed on Carbonmark by methodology category.

Each API endpoint will link to its reference documentation where you can create sample requests in other programming languages as well as enter the parameters you desire.

The /categories endpoint provides a list of all methodology categories used to delineate every project in the marketplace.

A carbon project may belong to one or more methodology categories.

Here's a sample of a request:

curl --request GET \
  --url https://api.carbonmark.com/categories \
  --header 'Accept: application/json'

You'll receive a JSON response containing an array with category ids like this:

[
  {
    "id": "Blue Carbon"
  },
  {
    "id": "Forestry"
  },
  {
    "id": "Other"
  },
  {
    "id": "Renewable Energy"
  },
  {
    "id": "Industrial Processing"
  },
  {
    "id": "Energy Efficiency"
  },
  {
    "id": "Other Nature Based"
  },
]

Select your methodology category. Next, we'll call the /carbonProjects endpoint with our desired query parameters.

In this example, we'll search for carbon projects in the Forestry methodology category from Indonesia:

The response you receive will contain a list of all carbon projects that fit your query parameters. Below we've listed an example response:

The information from this response such as "key" and "projectID" may be enough for your needs.

You can retrieve the full details of a carbon project by its using the project key; api.carbonmark.com/carbonProjects/{id}. For example:

The response will contain the full carbon project details:

Last updated