Quick Start

Get your API keys

API access will be launched soon for the public. To get notified when API keys become available, please join the waitlist by clicking on the "Waitlist" button in the API Access section of the CarbonMarketsHQ website.

Your API requests are authenticated using API keys. Any request that doesn't include a valid API key will be rejected.

Make your first request

Here's a sample GraphQL query to fetch all Verra projects with a "Registered" status.

Request Body

query {
  projects(
    limit: 5
    offset: 0
    projectFilter: { 
      current_registry: ["Verra"], 
      project_status: ["Registered"] 
    }
  ) {
      projectId
      currentRegistry
      projectDescription
      projectLink
      projectDeveloper
      sector
      projectType
      projectStatus
      methodology
      projectName
  }
}

This is how you can call the API in your code, or via curl:

Last updated