Spend-based carbon (Scope 3): convert a transaction amount + industry code (MCC/NAICS/BEA/
Spend-based carbon (Scope 3): convert a transaction amount + industry code (MCC/NAICS/BEA/ISIC/SIC/NACE) into verified CO2e. 200+ countries, licensed emission factors with full provenance.
3000 (raw units)
price
1
calls / 30d
1
unique payers
2026-08-25
updated
Provider
api.myco2suite.io · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0xdCA14e2B0F7995fe9263d77A9E7dCd128D1E6dD7",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "3000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"body": {
"country": "US",
"currency": "USD",
"mcc": "5411",
"spend_amount": 100
},
"bodyType": "json",
"method": "POST",
"type": "http"
},
"output": {
"example": {
"co2e_grams": 28450,
"co2e_kg": 28.45,
"co2e_tonnes": 0.02845,
"factor": {
"licence": "Public Domain",
"scope": "scope_3",
"source": "US EPA USEEIO v2.1",
"unit": "kg_co2e_per_usd",
"value": 0.2845
}
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"properties": {
"bea_code": {
"description": "US BEA industry code (alt to mcc)",
"type": "string"
},
"country": {
"description": "ISO 3166-1 alpha-2, e.g. US",
"type": "string"
},
"currency": {
"description": "ISO 4217 currency, e.g. USD",
"type": "string"
},
"mcc": {
"description": "Merchant Category Code (4 digits)",
"type": "string"
},
"naics": {
"description": "NAICS code (alt to mcc)",
"type": "string"
},
"spend_amount": {
"description": "Amount spent (>0)",
"type": "number"
}
},
"required": [
"spend_amount",
"currency",
"country"
]
},
"bodyType": {
"enum": [
"json",
"form-data",
"text"
],
"type": "string"
},
"method": {
"enum": [
"POST"
],
"type": "string"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://api.myco2suite.io/api/v1/transaction" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://api.myco2suite.io/api/v1/transaction");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://api.myco2suite.io/api/v1/transaction")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/4683.json, and this resource appears in /discovery/resources and /discovery/search.