curl --request GET \
--url https://vcm-fyi-api.fly.dev/v1/projects/ \
--header 'X-API-KEY: <api-key>'import requests
url = "https://vcm-fyi-api.fly.dev/v1/projects/"
headers = {"X-API-KEY": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-API-KEY': '<api-key>'}};
fetch('https://vcm-fyi-api.fly.dev/v1/projects/', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://vcm-fyi-api.fly.dev/v1/projects/",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-API-KEY: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://vcm-fyi-api.fly.dev/v1/projects/"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-API-KEY", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://vcm-fyi-api.fly.dev/v1/projects/")
.header("X-API-KEY", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://vcm-fyi-api.fly.dev/v1/projects/")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-API-KEY"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"pagination": {
"total_entries": 123,
"current_page": 123,
"total_pages": 123,
"next_page": "<string>"
},
"data": [
{
"project_id": "<string>",
"name": "<string>",
"registry": "<string>",
"proponent": "<string>",
"category": "<string>",
"status": "<string>",
"country": "<string>",
"listed_at": "2023-12-25",
"is_compliance": true,
"first_issuance_at": "2023-12-25",
"first_retirement_at": "2023-12-25",
"project_url": "<string>",
"project_type": "<string>",
"project_type_source": "<string>",
"protocol": [
"<string>"
],
"protocol_version": [
"<string>"
],
"retired": 0,
"issued": 0,
"sdg_goals": [
123
],
"certifications": [
"<string>"
],
"has_ccb": true,
"has_icvcm_ccp": true,
"has_corsia": true,
"has_sdvista": true,
"has_social_carbon": true,
"article6_authorized": true,
"article6_countries": [
"<string>"
],
"article6_authorization_types": [
"<string>"
],
"corc_durability": "<string>",
"clips": [
{
"date": "2023-12-25",
"title": "<string>",
"url": "<string>",
"source": "<string>",
"tags": [
"<string>"
],
"notes": "<string>",
"is_waybacked": false,
"type": "unknown",
"id": 123
}
],
"unretired": 123
}
]
}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}List carbon credit projects
Search and filter across 11,000+ carbon credit projects from 6 major registries (Verra, Gold Standard, CAR, ACR, Isometric, Puro Earth).
Pagination: Use current_page and per_page to paginate through results.
Default page size is 100, maximum is 200.
Filtering: Filter by registry, country, category, status, project type,
and credit ranges (issued_min, issued_max, retired_min, retired_max).
Sorting: Use the sort parameter with field names prefixed by + (ascending)
or - (descending). Example: sort=-issued to sort by most issued credits.
Search: Use search for case-insensitive search on project_id and name fields.
Beneficiary search: Use beneficiary_search to find projects where a specific
buyer/beneficiary has retired credits.
Each project in the response includes associated news clips and a computed
unretired field (issued minus retired).
curl --request GET \
--url https://vcm-fyi-api.fly.dev/v1/projects/ \
--header 'X-API-KEY: <api-key>'import requests
url = "https://vcm-fyi-api.fly.dev/v1/projects/"
headers = {"X-API-KEY": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-API-KEY': '<api-key>'}};
fetch('https://vcm-fyi-api.fly.dev/v1/projects/', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://vcm-fyi-api.fly.dev/v1/projects/",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-API-KEY: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://vcm-fyi-api.fly.dev/v1/projects/"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-API-KEY", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://vcm-fyi-api.fly.dev/v1/projects/")
.header("X-API-KEY", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://vcm-fyi-api.fly.dev/v1/projects/")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-API-KEY"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"pagination": {
"total_entries": 123,
"current_page": 123,
"total_pages": 123,
"next_page": "<string>"
},
"data": [
{
"project_id": "<string>",
"name": "<string>",
"registry": "<string>",
"proponent": "<string>",
"category": "<string>",
"status": "<string>",
"country": "<string>",
"listed_at": "2023-12-25",
"is_compliance": true,
"first_issuance_at": "2023-12-25",
"first_retirement_at": "2023-12-25",
"project_url": "<string>",
"project_type": "<string>",
"project_type_source": "<string>",
"protocol": [
"<string>"
],
"protocol_version": [
"<string>"
],
"retired": 0,
"issued": 0,
"sdg_goals": [
123
],
"certifications": [
"<string>"
],
"has_ccb": true,
"has_icvcm_ccp": true,
"has_corsia": true,
"has_sdvista": true,
"has_social_carbon": true,
"article6_authorized": true,
"article6_countries": [
"<string>"
],
"article6_authorization_types": [
"<string>"
],
"corc_durability": "<string>",
"clips": [
{
"date": "2023-12-25",
"title": "<string>",
"url": "<string>",
"source": "<string>",
"tags": [
"<string>"
],
"notes": "<string>",
"is_waybacked": false,
"type": "unknown",
"id": 123
}
],
"unretired": 123
}
]
}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}Authorizations
Query Parameters
Case insensitive search string. Currently searches on project_id and name fields only.
Page number
x >= 1Items per page
1 <= x <= 200List of sorting parameters in the format field_name or +field_name for ascending order or -field_name for descending order.
Registry name
verra, gold-standard, american-carbon-registry, climate-action-reserve, art-trees, isometric, puro-earth, plan-vivo, none Country name
Protocol name
Category name
Whether project is an ARB project
Format: YYYY-MM-DD
Format: YYYY-MM-DD
Minimum number of issued credits
Maximum number of issued credits
Minimum number of retired credits
Maximum number of retired credits
Project type
Project proponent/developer name
UN SDG goals (1-17). Multiple values = AND filter (must have ALL selected goals)
Specific certification labels (e.g., ccb-gold, ccb-biodiversity-gold, corsia). Multiple values = OR filter
Puro.earth CORC durability (100+ or 1000+). Multiple values = OR filter
Has CCB (Climate, Community & Biodiversity) certification
Has ICVCM Core Carbon Principles certification
CORSIA eligible
Has SD VISta certification
Has Social Carbon certification
Authorized under Paris Agreement Article 6
Article 6 authorization types: NDC Use, Intl mitigation purposes, Other purposes
Case insensitive search string. Currently searches on specified beneficiary_search_fields only.
Beneficiary fields to search in. Valid fields are: retirement_beneficiary_harmonized, retirement_beneficiary, retirement_beneficiary_account, retirement_beneficiary_note, retirement_beneficiary_reason