curl --request GET \
--url https://vcm-fyi-api.fly.dev/v1/countries/ \
--header 'X-API-KEY: <api-key>'import requests
url = "https://vcm-fyi-api.fly.dev/v1/countries/"
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/countries/', 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/countries/",
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/countries/"
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/countries/")
.header("X-API-KEY", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://vcm-fyi-api.fly.dev/v1/countries/")
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": [
{
"country_code": "<string>",
"country_name": "<string>",
"region": "<string>",
"article6_status": "<string>",
"article6_host_loas": 123,
"corsia_eligible": true,
"has_carbon_tax": true,
"has_ets": true,
"vcm_regulatory_status": "<string>",
"market_outlook": "<string>",
"is_buyer_country": false,
"article6_buyer_loas": 0,
"has_initial_report": false,
"has_dna": false,
"jcm_project_count": 0,
"export_restrictions": false,
"ca_policy": "<string>",
"country_risk_score": 123,
"total_projects": 0,
"total_credits_issued": 0,
"total_credits_retired": 0,
"project_count": 0,
"total_issued": 0,
"total_retired": 0
}
]
}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}List countries with policy intelligence
Get a paginated list of countries with carbon market policy data, enriched with project statistics from the database.
Each country includes AI-scanned policy intelligence covering:
- Article 6 status and bilateral agreement counts
- CORSIA eligibility
- Carbon pricing (carbon tax, ETS presence)
- VCM regulatory status (welcoming, regulated, restricted, banned)
- Market outlook summary
- Project statistics: count, total issued, total retired from our database
Countries without explicit policy records still appear if they have projects.
Filtering: Filter by region, subregion, Article 6 status, CORSIA eligibility, carbon tax/ETS presence, and VCM regulatory status.
Sorting: Sort by country_name, project_count, article6_host_loas, or
total_issued. Prefix with - for descending.
curl --request GET \
--url https://vcm-fyi-api.fly.dev/v1/countries/ \
--header 'X-API-KEY: <api-key>'import requests
url = "https://vcm-fyi-api.fly.dev/v1/countries/"
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/countries/', 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/countries/",
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/countries/"
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/countries/")
.header("X-API-KEY", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://vcm-fyi-api.fly.dev/v1/countries/")
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": [
{
"country_code": "<string>",
"country_name": "<string>",
"region": "<string>",
"article6_status": "<string>",
"article6_host_loas": 123,
"corsia_eligible": true,
"has_carbon_tax": true,
"has_ets": true,
"vcm_regulatory_status": "<string>",
"market_outlook": "<string>",
"is_buyer_country": false,
"article6_buyer_loas": 0,
"has_initial_report": false,
"has_dna": false,
"jcm_project_count": 0,
"export_restrictions": false,
"ca_policy": "<string>",
"country_risk_score": 123,
"total_projects": 0,
"total_credits_issued": 0,
"total_credits_retired": 0,
"project_count": 0,
"total_issued": 0,
"total_retired": 0
}
]
}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}Authorizations
Query Parameters
Filter by region (e.g., Africa, Asia)
Filter by subregion (e.g., Southeast Asia)
Filter by Article 6 status: active, developing, none
Filter by CORSIA eligibility
Filter by carbon tax presence
Filter by ETS presence
Filter by VCM status: welcoming, regulated, restricted, banned
Search country name
Page number
x >= 1Items per page
1 <= x <= 100Sort field: country_name, project_count, article6_host_loas. Prefix with - for desc
Response
Paginated list of countries with policy and project statistics