Country Electricity Grid Carbon Intensity Directory (200+ Jurisdictions)
Standardized electricity grid emissions for Scope 2 indirect carbon calculations.
Quick Technical Summary: Standardized electricity grid emissions for Scope 2 indirect carbon calculations. Implementation conforms to Regulation (EU) 2023/956 & 2023/1773.
Specification & Structural Breakdown
Country electricity grid carbon intensity factors are derived from European Commission Implementing Regulation (EU) 2023/1773 Annex III, supplemented with International Energy Agency (IEA) datasets and national grid transmission system operator statistics.
| Country Code | Jurisdiction | Grid Factor (tCO2e/MWh) | Grid Factor (gCO2/kWh) |
|---|---|---|---|
| CN | China | 0.581 | 581.0 |
| IN | India | 0.712 | 712.0 |
| US | United States | 0.375 | 375.0 |
| GB | United Kingdom | 0.207 | 207.0 |
Test Country Electricity Grid Carbon Intensity Directory (200+ Jurisdictions) Live
Paste raw inputs up to 32KB and inspect deterministic parsed JSON in real-time across 330+ Cloudflare edge locations. Pure compute, zero cold-starts.
Parsed JSON Response Model
The edge microservice transforms input payloads into strongly-typed hierarchical JSON with zero cold starts:
{
"countryCode": "IN",
"countryName": "India",
"gridEmissionFactorTco2ePerMwh": 0.712,
"gridEmissionFactorGco2PerKwh": 712
}
Copy-Paste Integration Code
Integrate this validator directly into your application using your production API key:
curl --request POST \
--url "https://eu-cbam-carbon-tax-calculation-engine.stanzaapi.com/api/v1/cbam/calculate" \
--header "Content-Type: application/json" \
--header "x-api-key: YOUR_API_KEY" \
--data '{
"cnCode": "72081000",
"countryOfOrigin": "CN",
"massKg": 50000
}'
const response = await fetch("https://eu-cbam-carbon-tax-calculation-engine.stanzaapi.com/api/v1/cbam/calculate", {
method: "POST",
headers: {
"Content-Type": "application/json",
"x-api-key": process.env.API_KEY || "YOUR_API_KEY"
},
body: JSON.stringify({
"cnCode": "72081000",
"countryOfOrigin": "CN",
"massKg": 50000
})
});
const data = await response.json();
console.log(data);
import requests
import json
url = "https://eu-cbam-carbon-tax-calculation-engine.stanzaapi.com/api/v1/cbam/calculate"
headers = {
"Content-Type": "application/json",
"x-api-key": "YOUR_API_KEY"
}
payload = {
"cnCode": "72081000",
"countryOfOrigin": "CN",
"massKg": 50000
}
response = requests.post(url, json=payload, headers=headers)
print(response.json())
package main
import (
"bytes"
"fmt"
"io"
"net/http"
"os"
)
func main() {
url := "https://eu-cbam-carbon-tax-calculation-engine.stanzaapi.com/api/v1/cbam/calculate"
payload := []byte(`{"cnCode":"72081000","countryOfOrigin":"CN","massKg":50000}`)
req, _ := http.NewRequest("POST", url, bytes.NewBuffer(payload))
req.Header.Add("Content-Type", "application/json")
req.Header.Add("x-api-key", os.Getenv("API_KEY"))
res, err := http.DefaultClient.Do(req)
if err != nil {
panic(err)
}
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}
Frequently Asked Questions & Technical Notes
Grid emission factors reflect official European Commission Implementing Regulations and annual IEA publications.
Related EU CBAM & Carbon Tax Calculation Engine Formats
Explore sibling specifications and standards in the same developer cluster:
EU CBAM Iron & Steel Emissions Calculator [CN 7201-7326 Benchmark API]
Calculate embedded carbon and EU ETS certificate liability for steel imports in under 2ms pure compute.
View Format →Aluminum CBAM Embedded Carbon Calculator (CN Chapter 76)
Electrolysis power intensity and smelting carbon calculations for aluminum imports.
View Format →Cement & Clinker CBAM Carbon Tax Calculator (CN 2523)
Calcination rotary kiln direct factor and clinker ratio calculations.
View Format →European Commission CBAM Registry XML Declaration Guide
Automated XML and JSON declaration generator for quarterly customs filings.
View Format →