Find carbon projects by vintage

Use the Carbonmark API to retrieve available vintages and return carbon projects that match a selected vintage.

Use the Carbonmark API to retrieve available vintages and return carbon projects that match a selected vintage.

This page shows the basic workflow. For full parameter definitions and response schemas, see the API referencearrow-up-right for each endpoint.

Step 1: Retrieve available vintages

Call the /vintagesarrow-up-right endpoint to return the list of valid vintage values you can use when filtering carbon projects.

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

Example response (trimmed for readability):

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

Step 2: Filter projects by vintage

Once you have a valid vintage value, pass it to the /carbonProjectsarrow-up-right endpoint.

You can also combine vintage with other supported filters such as:

  • country

  • category

  • project name

  • project description

  • assetPriceType

The assetPriceType filter lets you narrow results to projects with specific pricing sources. Accepted values are listing (seller listings on Carbonmark) and klimaprotocol (Klima protocol pool prices).

The example below returns projects with a 2020 vintage.

Example response (trimmed for readability):

For many workflows, the key and projectID fields are enough to display results or request full project details.

Step 3: Retrieve a single project by key

If you need the full details for a specific project, call /carbonProjects/{key}arrow-up-right using the project key returned in the search response. You can also filter the returned asset prices by type using the assetPriceType parameter.

Example response (trimmed for readability):

Notes

  • Use /vintages first to avoid passing unsupported vintage values.

  • Use /carbonProjects when you want a filtered list of matching projects.

  • Use /carbonProjects/{key} when you need full details for a specific project.

  • Refer to the API reference for the complete list of supported parameters and response fields.

Last updated