Batch EU CBAM: liability for a portfolio of shipments in one call (1–100 shipments; a sing
Batch EU CBAM: liability for a portfolio of shipments in one call (1–100 shipments; a single live ETS price is shared). Priced per shipment.
16000 (raw units)
price
1
calls / 30d
1
unique payers
2026-09-06
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": "16000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"body": {
"shipments": [
{
"cn_code": "72071100",
"id": "s1",
"origin_country": "CN",
"weight_tonnes": 100
},
{
"cn_code": "25231000",
"id": "s2",
"origin_country": "TR",
"weight_tonnes": 500
}
]
},
"bodyType": "json",
"method": "POST",
"type": "http"
},
"output": {
"example": {
"portfolio": {
"covered": 2,
"total_estimated_liability_eur": 2753,
"total_shipments": 2
},
"results": [
{
"id": "s1",
"result": {
"sector": "iron_steel"
},
"status": "ok"
}
]
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"properties": {
"shipments": {
"description": "1–100 shipments",
"items": {
"properties": {
"cn_code": {
"type": "string"
},
"id": {
"type": "string"
},
"origin_country": {
"type": "string"
},
"weight_tonnes": {
"type": "number"
}
},
"required": [
"cn_code",
"origin_country",
"weight_tonnes"
],
"type": "object"
},
"type": "array"
}
},
"required": [
"shipments"
]
},
"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/cbam/batch" # -> 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/cbam/batch");
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/cbam/batch")
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/4682.json, and this resource appears in /discovery/resources and /discovery/search.