Find carbon projects by vintage

You can search for carbon projects listed on Carbonmark by vintage.

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.

First, retrieve an array of the vintages of available carbon projects by calling the /vintages endpoint. Here's a sample of a request:

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

You'll receive a JSON response containing an array with available vintages like this:

[
  "2006",
  "2007",
  "2008",
  "2009",
  "2010",
  "2011",
  "2012",
  "2013",
  "2014",
  "2015",
  "2016",
  "2017",
  "2018",
  "2019",
  "2020"
]

Select your desired vintage(s). Next, we'll call the /carbonProjects endpoint with our desired query parameters.

In this example, we'll search for projects with a 2020 vintage. Here's the example request:

The response you receive will contain a list of all carbon projects that fit your query parameters. Below is our example response for two projects:

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