← Marketplace

Myco2suite

Myco2suite is an x402-native service at https://api.myco2suite.io, indexed from the x402 Bazaar (Coinbase's public discovery directory). It charges callers itself in USDC on Base and is paid directly at its own wallet; Monex Protocol passes your request and payment headers through untouched. 8 endpoints listed.

Base

Offers

OfferEndpointPrice
V1 Activity
Activity-based carbon: convert a physical quantity (fuel, electricity, materials; 1,000+ activity types) into verified CO2e for a given country and year.
/m/bz-api-myco2suite-io/api/v1/activity0.003 USDC
Activity Batch
Batch activity-based carbon: many activity calculations in one call (1–100 items). Priced per item.
/m/bz-api-myco2suite-io/api/v1/activity/batch0.006 USDC
V1 Cbam
EU CBAM liability: embedded emissions, free-allocation benchmark, certificates and EUR liability for an import by CN code, origin country and weight (live EU ETS price).
/m/bz-api-myco2suite-io/api/v1/cbam0.008 USDC
Cbam Batch
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.
/m/bz-api-myco2suite-io/api/v1/cbam/batch0.016 USDC
V1 Factor
Emission-factor lookup: fetch the underlying factor (value, unit, methodology, source, licence) by id, activity_type, BEA code, or spend classification. Audit-grade provenance, no calculation.
/m/bz-api-myco2suite-io/api/v1/factor0.003 USDC
V1 Flight
Flight carbon: great-circle CO2e for a route by IATA/UN-LOCODE or lat/long, by cabin class and passengers, with optional radiative forcing (BEIS 2025 factors).
/m/bz-api-myco2suite-io/api/v1/flight0.003 USDC
V1 Freight
Freight carbon: CO2e for road/rail/sea/air shipments by weight × distance, single-leg or multi-leg intermodal. Ports/airports by UN-LOCODE, IATA, name or lat/long.
/m/bz-api-myco2suite-io/api/v1/freight0.003 USDC
V1 Transaction
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.
/m/bz-api-myco2suite-io/api/v1/transaction0.003 USDC

Machine-readable: openapi.json with x-payment-info offers.

Try it live

Run the full MPP flow from your browser: catch the 402, sign the payment with your wallet, and watch it settle on-chain.

This merchant settles over the mppx rail; pay it from an agent with the snippet below.

Pay with an agent

Any MPP or x402-compatible client works. With mppx, payment is automatic:

import { Mppx, evm } from 'mppx/client'
import { privateKeyToAccount } from 'viem/accounts'

const mppx = Mppx.create({
  methods: [evm({
    account: privateKeyToAccount(process.env.KEY),
    currencies: [evm.assets.base.USDC],
  })],
})

const res = await mppx.fetch('https://api.meshgateway.co/m/bz-api-myco2suite-io/api/v1/activity')
// 402 challenge signed and settled automatically; response includes Payment-Receipt

Or inspect the challenge yourself:

curl -i https://api.meshgateway.co/m/bz-api-myco2suite-io/api/v1/activity
# HTTP/1.1 402 Payment Required
# WWW-Authenticate: Payment id="…", method="evm", intent="charge", …