Carbonlink API
  • 🌿Welcome to Carbonlink
  • 🌟How Carbonlink Works
  • πŸ’ΎInstallation
  • ⁉️Handling Errors & Limits
    • Response Codes
    • Rate Limiting
  • GUIDES
    • Use Cases
      • E-Commerce
      • Carbon Accounting
      • Carbon Solution Providers
  • CORE
    • πŸ“–API reference
      • πŸ‘œProduct
      • 🧩Factor
      • πŸ—ΊοΈAsset
      • 🌍Offset
      • 🚞Estimate
    • πŸ“¦Data objects
      • Factor
      • Product
      • Asset
        • Project
          • Vintage
        • Pool
      • Estimate
      • Offset
  • Resources
    • Defining Emissions
      • The Scope System
      • CO2 Equivalents
    • Carbon Markets 101
      • What is A Carbon Credit?
      • Environmental Impact of Offsetting
      • How Are Credits Generated & Verified?
    • Methodologies
      • Carbon Credit Methodologies
      • Estimate Methodology
Powered by GitBook
On this page
  1. CORE
  2. Data objects
  3. Asset

Project

Contains data about a carbon credit project from the Carbonlink Asset Library.

The Project object

id string

Unique identifier for the object

name string

The name of the project

country string

Country where carbon assets were produced

region string

Region where carbon assets were produced

geo tuple(float, float)

Geolocation of project, in (Longitude, Latitude)

description string

Description of project

imageUrl string

URL of an image representing this project

url string

URL linking to a page with more details about this project

registry string

The name of the carbon credit registry this asset belongs to

registryId string

Identifier with the registry for locating this project

sdgs object

List of objects denoting the Sustainable Development Goals (SDGs) awarded to this project. Each SDG object contains an index (int) and a name (string).

vintages object

List of objects containing details of each production year for this project.

// Example:
{
  id: "proj_12345678",
  name: "Kasigau Corridor REDD+ Project",
  country: "Kenya",
  region: "Mombasa",
  geo: (-1.23, 12.23),
  description: "The Kasigau Corridor REDD+ Project is focused on land conser...",
  imageUrl: "https://.../proj_123...",
  url: "https://www.carbonlink.io/.../proj_123...",
  registry: "Verra",
  registryId: "VCS-612",
  sdgs: [
    { index: 1, name: "No Poverty" },
    { index: 5, name: "Gender Equality" }
  ],
  vintages: [
    {
        year: "2019",
        ...
    },
    {
        year: "2020",
        ...
    }
  ],
}
PreviousAssetNextVintage

Last updated 1 year ago

πŸ“¦