Pegada de Carbono e Fator de Emissão API

API ID 13267

Transforme qualquer atividade gasto frete ou voo em kg CO₂e a partir de dados abertos e fontes (UK DEFRA US EPA Ember IPCC) além da intensidade de carbono da rede ao vivo para GB US e UE e 213 países

265 ms resp. média

Documentação da API

Endpoints

Requisição
Converter uma atividade + quantia em kg CO₂e usando fatores de emissão abertos (DEFRA/EPA)
Endpoint ID: 27322
GET https://zylalabs.com/api/13267/carbon+footprint+and+emission+factor+api/27322/estimate+co2e
PARÂMETROS DE ENTRADA

Estime CO2e — Recursos do endpoint

Objeto Descrição
amount Obrigatório Quantity of the activity, expressed in unit.
unit Obrigatório Unit of the amount (litres, kWh, MWh, GJ, mmBtu, m3, kg, tonnes, km, miles…). Auto-converted to the factor's unit when compatible.
activity Opcional Free-text activity to match (e.g. diesel, natural gas, electricity, petrol, coal). Required unless factor_id is given.
region Opcional ISO-3 country code (GBR, USA, FRA) or US/UK/EU. Falls back to GB then US.
year Opcional Reporting year for the factor; defaults to the latest available.
factor_id Opcional Exact factor id to use, bypassing activity matching (from /factors/search).

Solicitações gratuitas de teste restantes: 3 de 3.


PARÂMETROS DE ENTRADA

amount
unit
activity
region
year
factor_id
RESPOSTA DE EXEMPLO DA API
JSON
{
    "activity": "Diesel (100% mineral diesel)",
    "amount": 40,
    "unit": "litres",
    "region": "GB",
    "year": 2025,
    "co2e_kg": 106.462,
    "co2e_tonnes": 0.106462,
    "factor": {
        "id": "defra-2025-fuels-liquid-fuels-diesel-100-mineral-diesel-litres",
        "co2e_kg_per_unit": 2.66155,
        "unit": "litres",
        "region": "GB",
        "year": 2025,
        "scope": 1,
        "category": "Fuels",
        "data_quality": {
            "tier": "A",
            "score": 9,
            "max": 9,
            "basis": [
                "national government dataset",
                "vintage 2025",
                "activity-specific"
            ],
            "note": "heuristic (authority x specificity x vintage); not statistical uncertainty"
        }
    },
    "notes": [
        "selected by factor_id"
    ]
}
Estime CO2e — TRECHOS DE CÓDIGO

curl --location --request GET 'https://zylalabs.com/api/13267/carbon+footprint+and+emission+factor+api/27322/estimate+co2e?amount=40&unit=litres&activity=diesel®ion=GB&year=2025&factor_id=defra-2025-fuels-liquid-fuels-diesel-100-mineral-diesel-litres' --header 'Authorization: Bearer YOUR_API_KEY' 


    
Requisição
Estime CO₂e a partir do gasto em dólares americanos por categoria/NAICS (EPA USEEIO), ajustado pela inflação para a base de 2022
Endpoint ID: 27323
GET https://zylalabs.com/api/13267/carbon+footprint+and+emission+factor+api/27323/spend-based+scope+3
PARÂMETROS DE ENTRADA

Escopo 3 baseado em gastos — Recursos do endpoint

Objeto Descrição
amount Obrigatório Money spent, in USD
category Opcional Free-text spend category, matched to a US NAICS industry. Required unless naics given
naics Opcional Explicit 6-digit US NAICS code, bypassing category matching
currency Opcional Currency of the amount; USD only
year Opcional Year spent; amount is inflation-adjusted to 2022 USD

Solicitações gratuitas de teste restantes: 3 de 3.


PARÂMETROS DE ENTRADA

amount
category
naics
currency
year
RESPOSTA DE EXEMPLO DA API
JSON
{
    "amount": 5000,
    "currency": "USD",
    "year": "2024",
    "category": "Data Processing, Hosting, and Related Services",
    "naics": "518210",
    "co2e_kg": 433.82,
    "co2e_tonnes": 0.43382,
    "factor": {
        "naics": "518210",
        "title": "Data Processing, Hosting, and Related Services",
        "kg_co2e_per_usd": 0.093,
        "ref_year": 2022,
        "basis": "purchaser price (with margins)"
    },
    "notes": [
        "inflation-adjusted 5000.0 USD (2024) -> 4664.73 in 2022 USD (US CPI-U)"
    ]
}
Escopo 3 baseado em gastos — TRECHOS DE CÓDIGO

curl --location --request GET 'https://zylalabs.com/api/13267/carbon+footprint+and+emission+factor+api/27323/spend-based+scope+3?amount=5000&category=cloud hosting&naics=518210¤cy=USD&year=2024' --header 'Authorization: Bearer YOUR_API_KEY' 


    
Requisição
CO₂e para transporte de mercadorias por ISO 14083/GLEC (peso × distância × fator de frete DEFRA por modo)
Endpoint ID: 27324
GET https://zylalabs.com/api/13267/carbon+footprint+and+emission+factor+api/27324/freight+co2e
PARÂMETROS DE ENTRADA

Frete CO2e — Recursos do endpoint

Objeto Descrição
mode Obrigatório road, hgv, van, rail, sea, container, bulk, tanker, air.
weight_tonnes Obrigatório Weight of goods, in tonnes
distance_km Obrigatório Distance travelled, in km.
factor_id Opcional Pin an exact DEFRA freight factor.

Solicitações gratuitas de teste restantes: 3 de 3.


PARÂMETROS DE ENTRADA

mode
weight_tonnes
distance_km
factor_id
RESPOSTA DE EXEMPLO DA API
JSON
{
    "mode": "road",
    "weight_tonnes": 12,
    "distance_km": 300,
    "tonne_km": 3600,
    "co2e_kg": 365.868,
    "co2e_tonnes": 0.365868,
    "method": "ISO 14083 / GLEC (distance x weight x freight factor)",
    "factor": {
        "id": "defra-2025-freighting-goods-hgv-all-diesel-all-hgvs-average-laden-tonne-km",
        "path": "Freighting goods / HGV (all diesel) / All HGVs (Average laden)",
        "kg_co2e_per_tonne_km": 0.10163
    },
    "notes": [
        "mode 'road' -> Freighting goods / HGV (all diesel) / All HGVs (Average laden)",
        "47 other road factors exist; pass factor_id to pin one"
    ]
}
Frete CO2e — TRECHOS DE CÓDIGO

curl --location --request GET 'https://zylalabs.com/api/13267/carbon+footprint+and+emission+factor+api/27324/freight+co2e?mode=road&weight_tonnes=12&distance_km=300' --header 'Authorization: Bearer YOUR_API_KEY' 


    
Requisição
Emissão de CO₂e de voos entre dois aeroportos (ou uma determinada distância) com um multiplicador de forçamento radiativo configurável
Endpoint ID: 27325
GET https://zylalabs.com/api/13267/carbon+footprint+and+emission+factor+api/27325/flight+co2e
PARÂMETROS DE ENTRADA

Emissão de CO2e do voo — Recursos do endpoint

Objeto Descrição
from Obrigatório Origin IATA; required (with to) unless distance_km given.
to Opcional Destination IATA.
distance_km Opcional Supply distance directly instead of from/to.
class Opcional economy, premium, business, first, average.
passengers Opcional Number of passengers.
round_trip Opcional Double distance for a return trip.
rf Opcional Double distance for a return trip.

Solicitações gratuitas de teste restantes: 3 de 3.


PARÂMETROS DE ENTRADA

from
to
distance_km
class
passengers
round_trip
rf
RESPOSTA DE EXEMPLO DA API
JSON
{
    "from": "LHR",
    "from_name": "London Heathrow Airport",
    "to": "JFK",
    "to_name": "John F. Kennedy International Airport",
    "distance_km": 5539.8,
    "haul": "Long-haul",
    "class": "economy",
    "passengers": 1,
    "round_trip": false,
    "passenger_km": 5539.8,
    "co2_only_kg": 383.6886,
    "co2e_kg": 729.0083,
    "co2e_tonnes": 0.729008,
    "rf_multiplier": 1.9,
    "official_with_rf_kg": 648.3816,
    "factor": {
        "id": "defra-2025-business-travel-air-flights-long-haul-to-from-uk-economy-class-without-rf-passenger-km",
        "path": "Business travel- air / Flights / Long-haul, to/from UK / Economy class (Without RF)",
        "kg_co2_per_passenger_km_without_rf": 0.06926
    },
    "notes": [
        "haul 'Long-haul' by great-circle distance; to/from-UK factor used",
        "rf=1.9 radiative-forcing multiplier applied to the CO2 base"
    ]
}
Emissão de CO2e do voo — TRECHOS DE CÓDIGO

curl --location --request GET 'https://zylalabs.com/api/13267/carbon+footprint+and+emission+factor+api/27325/flight+co2e?from=LHR&to=JFK&distance_km=5540&class=economy&passengers=1&round_trip=false&rf=1.9' --header 'Authorization: Bearer YOUR_API_KEY' 


    
Requisição
Potencial de Aquecimento Global e CO₂e para um refrigerante ou gás F (IPCC AR4/5/6; misturas ponderadas por massa)
Endpoint ID: 27326
GET https://zylalabs.com/api/13267/carbon+footprint+and+emission+factor+api/27326/refrigerant+gwp
PARÂMETROS DE ENTRADA

GWP do refrigerante — Recursos do endpoint

Objeto Descrição
gas Obrigatório R-number (R-410A), HFC name (HFC-134a), or gas name (Nitrous oxide).
kg Opcional Mass in kg; if given, returns CO₂e too.
assessment Opcional IPCC report: AR4, AR5, AR6.
horizon Opcional Time horizon in years: 20, 100, 500.

Solicitações gratuitas de teste restantes: 3 de 3.


PARÂMETROS DE ENTRADA

gas
kg
assessment
horizon
RESPOSTA DE EXEMPLO DA API
JSON
{
    "gas": "R-410A",
    "gwp": 2255.5,
    "assessment": "AR6",
    "horizon_years": 100,
    "components": {
        "HFC-32": {
            "fraction": 0.5,
            "gwp": 771
        },
        "HFC-125": {
            "fraction": 0.5,
            "gwp": 3740
        }
    },
    "kg": 5,
    "co2e_kg": 11277.5,
    "co2e_tonnes": 11.2775
}
GWP do refrigerante — TRECHOS DE CÓDIGO

curl --location --request GET 'https://zylalabs.com/api/13267/carbon+footprint+and+emission+factor+api/27326/refrigerant+gwp?gas=R-410A&kg=5&assessment=AR6&horizon=100' --header 'Authorization: Bearer YOUR_API_KEY' 


    
Requisição
Pesquisa de texto completo no catálogo de fatores de emissão com filtros opcionais
Endpoint ID: 27327
GET https://zylalabs.com/api/13267/carbon+footprint+and+emission+factor+api/27327/search+factors
PARÂMETROS DE ENTRADA

Fatores de Pesquisa — Recursos do endpoint

Objeto Descrição
q Obrigatório Free-text query over activity/path/category/region/unit.
category Opcional Filter by category.
region Opcional Filter by factor region.
unit Opcional Filter by the factor's unit.
year Opcional Filter by year.
limit Opcional Max results (≤100).

Solicitações gratuitas de teste restantes: 3 de 3.


PARÂMETROS DE ENTRADA

q
category
region
unit
year
limit
RESPOSTA DE EXEMPLO DA API
JSON
{
    "count": 8,
    "query": "natural gas",
    "results": [
        {
            "activity": "natural-gas",
            "activity_label": "Natural gas",
            "category": "Fuels",
            "co2e_kg_per_unit": 2.06672,
            "gas_breakdown": {
                "ch4": 0.00307,
                "co2": 2.0627,
                "n2o": 0.00095
            },
            "id": "defra-2025-fuels-gaseous-fuels-natural-gas-cubic-metres",
            "path": "Fuels / Gaseous fuels / Natural gas",
            "region": "GB",
            "scope": 1,
            "unit": "cubic metres",
            "year": 2025,
            "data_quality": {
                "tier": "A",
                "score": 9,
                "max": 9,
                "basis": [
                    "national government dataset",
                    "vintage 2025",
                    "activity-specific"
                ],
                "note": "heuristic (authority x specificity x vintage); not statistical uncertainty"
            }
        },
        {
            "activity": "natural-gas",
            "activity_label": "Natural gas",
            "category": "Fuels",
            "co2e_kg_per_unit": 0.18296,
            "gas_breakdown": {
                "ch4": 0.00028,
                "co2": 0.18259,
                "n2o": 9.0e-5
            },
            "id": "defra-2025-fuels-gaseous-fuels-natural-gas-kwh-gross-cv",
            "path": "Fuels / Gaseous fuels / Natural gas",
            "region": "GB",
            "scope": 1,
            "unit": "kWh (Gross CV)",
            "year": 2025,
            "data_quality": {
                "tier": "A",
                "score": 9,
                "max": 9,
                "basis": [
                    "national government dataset",
                    "vintage 2025",
                    "activity-specific"
                ],
                "note": "heuristic (authority x specificity x vintage); not statistical uncertainty"
            }
        },
        {
            "activity": "natural-gas",
            "activity_label": "Natural gas",
            "category": "Fuels",
            "co2e_kg_per_unit": 0.2027,
            "gas_breakdown": {
                "ch4": 0.00031,
                "co2": 0.20229,
                "n2o": 0.0001
            },
            "id": "defra-2025-fuels-gaseous-fuels-natural-gas-kwh-net-cv",
            "path": "Fuels / Gaseous fuels / Natural gas",
            "region": "GB",
            "scope": 1,
            "unit": "kWh (Net CV)",
            "year": 2025,
            "data_quality": {
                "tier": "A",
                "score": 9,
                "max": 9,
                "basis": [
                    "national government dataset",
                    "vintage 2025",
                    "activity-specific"
                ],
                "note": "heuristic (authority x specificity x vintage); not statistical uncertainty"
            }
        },
        {
            "activity": "natural-gas",
            "activity_label": "Natural gas",
            "category": "Fuels",
            "co2e_kg_per_unit": 2575.46441,
            "gas_breakdown": {
                "ch4": 3.8528,
                "co2": 2570.42,
                "n2o": 1.19161
            },
            "id": "defra-2025-fuels-gaseous-fuels-natural-gas-tonnes",
            "path": "Fuels / Gaseous fuels / Natural gas",
            "region": "GB",
            "scope": 1,
            "unit": "tonnes",
            "year": 2025,
            "data_quality": {
                "tier": "A",
                "score": 9,
                "max": 9,
                "basis": [
                    "national government dataset",
                    "vintage 2025",
                    "activity-specific"
                ],
                "note": "heuristic (authority x specificity x vintage); not statistical uncertainty"
            }
        },
        {
            "activity": "natural-gas-100-mineral-blend",
            "activity_label": "Natural gas (100% mineral blend)",
            "category": "Fuels",
            "co2e_kg_per_unit": 2.08906,
            "gas_breakdown": {
                "ch4": 0.00307,
                "co2": 2.08504,
                "n2o": 0.00095
            },
            "id": "defra-2025-fuels-gaseous-fuels-natural-gas-100-mineral-blend-cubic-metres",
            "path": "Fuels / Gaseous fuels / Natural gas (100% mineral blend)",
            "region": "GB",
            "scope": 1,
            "unit": "cubic metres",
            "year": 2025,
            "data_quality": {
                "tier": "A",
                "score": 9,
                "max": 9,
                "basis": [
                    "national government dataset",
                    "vintage 2025",
                    "activity-specific"
                ],
                "note": "heuristic (authority x specificity x vintage); not statistical uncertainty"
            }
        },
        {
            "activity": "natural-gas-100-mineral-blend",
            "activity_label": "Natural gas (100% mineral blend)",
            "category": "Fuels",
            "co2e_kg_per_unit": 0.18494,
            "gas_breakdown": {
                "ch4": 0.00028,
                "co2": 0.18457,
                "n2o": 9.0e-5
            },
            "id": "defra-2025-fuels-gaseous-fuels-natural-gas-100-mineral-blend-kwh-gross-cv",
            "path": "Fuels / Gaseous fuels / Natural gas (100% mineral blend)",
            "region": "GB",
            "scope": 1,
            "unit": "kWh (Gross CV)",
            "year": 2025,
            "data_quality": {
                "tier": "A",
                "score": 9,
                "max": 9,
                "basis": [
                    "national government dataset",
                    "vintage 2025",
                    "activity-specific"
                ],
                "note": "heuristic (authority x specificity x vintage); not statistical uncertainty"
            }
        },
        {
            "activity": "natural-gas-100-mineral-blend",
            "activity_label": "Natural gas (100% mineral blend)",
            "category": "Fuels",
            "co2e_kg_per_unit": 0.20489,
            "gas_breakdown": {
                "ch4": 0.00031,
                "co2": 0.20448,
                "n2o": 0.0001
            },
            "id": "defra-2025-fuels-gaseous-fuels-natural-gas-100-mineral-blend-kwh-net-cv",
            "path": "Fuels / Gaseous fuels / Natural gas (100% mineral blend)",
            "region": "GB",
            "scope": 1,
            "unit": "kWh (Net CV)",
            "year": 2025,
            "data_quality": {
                "tier": "A",
                "score": 9,
                "max": 9,
                "basis": [
                    "national government dataset",
                    "vintage 2025",
                    "activity-specific"
                ],
                "note": "heuristic (authority x specificity x vintage); not statistical uncertainty"
            }
        },
        {
            "activity": "natural-gas-100-mineral-blend",
            "activity_label": "Natural gas (100% mineral blend)",
            "category": "Fuels",
            "co2e_kg_per_unit": 2603.30441,
            "gas_breakdown": {
                "ch4": 3.8528,
                "co2": 2598.26,
                "n2o": 1.19161
            },
            "id": "defra-2025-fuels-gaseous-fuels-natural-gas-100-mineral-blend-tonnes",
            "path": "Fuels / Gaseous fuels / Natural gas (100% mineral blend)",
            "region": "GB",
            "scope": 1,
            "unit": "tonnes",
            "year": 2025,
            "data_quality": {
                "tier": "A",
                "score": 9,
                "max": 9,
                "basis": [
                    "national government dataset",
                    "vintage 2025",
                    "activity-specific"
                ],
                "note": "heuristic (authority x specificity x vintage); not statistical uncertainty"
            }
        }
    ]
}
Fatores de Pesquisa — TRECHOS DE CÓDIGO

curl --location --request GET 'https://zylalabs.com/api/13267/carbon+footprint+and+emission+factor+api/27327/search+factors?q=natural gas&category=Fuels®ion=GB' --header 'Authorization: Bearer YOUR_API_KEY' 


    
Requisição
Como o valor de um fator mudou entre duas edições
Endpoint ID: 27328
GET https://zylalabs.com/api/13267/carbon+footprint+and+emission+factor+api/27328/factor+diff
PARÂMETROS DE ENTRADA

Fator Dif. — Recursos do endpoint

Objeto Descrição
id Obrigatório The factor id.
from Opcional The start year.
to Opcional The end year.

Solicitações gratuitas de teste restantes: 3 de 3.


PARÂMETROS DE ENTRADA

id
from
to
RESPOSTA DE EXEMPLO DA API
JSON
{
    "id": "defra-2025-fuels-liquid-fuels-diesel-100-mineral-diesel-litres",
    "identity": "fuels-liquid-fuels-diesel-100-mineral-diesel-litres",
    "from_year": 2023,
    "to_year": 2025,
    "from_value": 2.659372,
    "to_value": 2.66155,
    "absolute_change": 0.002178,
    "percent_change": 0.08,
    "unit": "litres"
}
Fator Dif. — TRECHOS DE CÓDIGO

curl --location --request GET 'https://zylalabs.com/api/13267/carbon+footprint+and+emission+factor+api/27328/factor+diff?id=defra-2025-fuels-liquid-fuels-diesel-100-mineral-diesel-litres&from=2023&to=2025' --header 'Authorization: Bearer YOUR_API_KEY' 


    
Requisição
Encontre indústrias NAICS dos EUA (e seus kg CO₂e por dólar) para estimativa baseada em gastos
Endpoint ID: 27329
GET https://zylalabs.com/api/13267/carbon+footprint+and+emission+factor+api/27329/search+industries+-naics
PARÂMETROS DE ENTRADA

Pesquisar Indústrias -NAICS — Recursos do endpoint

Objeto Descrição
q Obrigatório Free-text industry query.
limit Opcional Max results (<100)

Solicitações gratuitas de teste restantes: 3 de 3.


PARÂMETROS DE ENTRADA

q
limit
RESPOSTA DE EXEMPLO DA API
JSON
{
    "count": 7,
    "query": "consulting",
    "results": [
        {
            "naics": "541613",
            "title": "Marketing Consulting Services",
            "kg_co2e_per_usd": 0.078
        },
        {
            "naics": "541620",
            "title": "Environmental Consulting Services",
            "kg_co2e_per_usd": 0.09
        },
        {
            "naics": "541612",
            "title": "Human Resources Consulting Services",
            "kg_co2e_per_usd": 0.078
        },
        {
            "naics": "541618",
            "title": "Other Management Consulting Services",
            "kg_co2e_per_usd": 0.078
        },
        {
            "naics": "541690",
            "title": "Other Scientific and Technical Consulting Services",
            "kg_co2e_per_usd": 0.09
        },
        {
            "naics": "541614",
            "title": "Process, Physical Distribution, and Logistics Consulting Services",
            "kg_co2e_per_usd": 0.078
        },
        {
            "naics": "541611",
            "title": "Administrative Management and General Management Consulting Services",
            "kg_co2e_per_usd": 0.078
        }
    ]
}
Pesquisar Indústrias -NAICS — TRECHOS DE CÓDIGO

curl --location --request GET 'https://zylalabs.com/api/13267/carbon+footprint+and+emission+factor+api/27329/search+industries+-naics?q=consulting&limit=20' --header 'Authorization: Bearer YOUR_API_KEY' 


    
Requisição
Intensidade de carbono anual da rede elétrica para 213 países (Ember) e 27 subregiões do eGRID dos EUA
Endpoint ID: 27330
GET https://zylalabs.com/api/13267/carbon+footprint+and+emission+factor+api/27330/grid+intensity+-+annual
PARÂMETROS DE ENTRADA

Intensidade da Rede - anual — Recursos do endpoint

Objeto Descrição
region Obrigatório ISO-3 code, US/UK/EU, or a US eGRID subregion (CAMX, US-RFCE).
year Opcional Year; defaults to latest.

Solicitações gratuitas de teste restantes: 3 de 3.


PARÂMETROS DE ENTRADA

region
year
RESPOSTA DE EXEMPLO DA API
JSON
{
    "region": "US",
    "iso3": "USA",
    "year": 2025,
    "gco2_per_kwh": 384.4,
    "kg_co2e_per_kwh": 0.3844,
    "available_years": [
        2000,
        2025
    ]
}
Intensidade da Rede - anual — TRECHOS DE CÓDIGO

curl --location --request GET 'https://zylalabs.com/api/13267/carbon+footprint+and+emission+factor+api/27330/grid+intensity+-+annual?region=US&year=2025' --header 'Authorization: Bearer YOUR_API_KEY' 


    
Requisição
Intensidade de carbono da rede elétrica ao vivo para GB (NESO) autoridades de equilíbrio dos EUA (EIA) e zonas de licitação da UE (ENTSO-E)
Endpoint ID: 27331
GET https://zylalabs.com/api/13267/carbon+footprint+and+emission+factor+api/27331/live+grid+intensity
PARÂMETROS DE ENTRADA

Intensidade da Grade ao Vivo — Recursos do endpoint

Objeto Descrição
zone Obrigatório GB, a US balancing authority (CISO, PJM, ERCO…), or an EU code (FR, DE, ES, PL, DK1, SE3…).

Solicitações gratuitas de teste restantes: 3 de 3.


PARÂMETROS DE ENTRADA

zone
RESPOSTA DE EXEMPLO DA API
JSON
{
    "zone": "FR",
    "eic": "10YFR-RTE------C",
    "gco2_per_kwh": 10.2,
    "kg_co2e_per_kwh": 0.010195,
    "method": "computed from actual generation per production type x direct fuel CO2 factors (estimate; renewables/nuclear ~ 0)",
    "mix": [
        {
            "production_type": "B14",
            "mw": 36584.4,
            "gco2_per_kwh": 0
        },
        {
            "production_type": "B16",
            "mw": 20653.2,
            "gco2_per_kwh": 0
        },
        {
            "production_type": "B19",
            "mw": 2681.9,
            "gco2_per_kwh": 0
        },
        {
            "production_type": "B11",
            "mw": 2048.3,
            "gco2_per_kwh": 0
        },
        {
            "production_type": "B04",
            "mw": 811.5,
            "gco2_per_kwh": 450
        },
        {
            "production_type": "B17",
            "mw": 391.6,
            "gco2_per_kwh": 500
        },
        {
            "production_type": "B01",
            "mw": 284.3,
            "gco2_per_kwh": 230
        },
        {
            "production_type": "B12",
            "mw": 269.9,
            "gco2_per_kwh": 0
        },
        {
            "production_type": "B18",
            "mw": 120.2,
            "gco2_per_kwh": 0
        },
        {
            "production_type": "B25",
            "mw": 47.1,
            "gco2_per_kwh": 0
        },
        {
            "production_type": "B06",
            "mw": 34.2,
            "gco2_per_kwh": 750
        },
        {
            "production_type": "B10",
            "mw": 25.3,
            "gco2_per_kwh": 0
        }
    ]
}
Intensidade da Grade ao Vivo — TRECHOS DE CÓDIGO

curl --location --request GET 'https://zylalabs.com/api/13267/carbon+footprint+and+emission+factor+api/27331/live+grid+intensity?zone=FR' --header 'Authorization: Bearer YOUR_API_KEY' 


    
Requisição
Previsão de intensidade de carbono da rede GB a cada meia hora (até 48h)
Endpoint ID: 27332
GET https://zylalabs.com/api/13267/carbon+footprint+and+emission+factor+api/27332/grid+forecast
PARÂMETROS DE ENTRADA

Previsão de Rede — Recursos do endpoint

Objeto Descrição
zone Obrigatório Zone - GB only.
hours Opcional Forecast horizon, up to 48.

Solicitações gratuitas de teste restantes: 3 de 3.


PARÂMETROS DE ENTRADA

zone
hours
RESPOSTA DE EXEMPLO DA API
JSON
{
    "zone": "GB",
    "hours": 24,
    "periods": [
        {
            "from": "2026-07-22T14:00Z",
            "to": "2026-07-22T14:30Z",
            "gco2_per_kwh": 85,
            "index": "low"
        },
        {
            "from": "2026-07-22T14:30Z",
            "to": "2026-07-22T15:00Z",
            "gco2_per_kwh": 84,
            "index": "low"
        },
        {
            "from": "2026-07-22T15:00Z",
            "to": "2026-07-22T15:30Z",
            "gco2_per_kwh": 86,
            "index": "low"
        },
        {
            "from": "2026-07-22T15:30Z",
            "to": "2026-07-22T16:00Z",
            "gco2_per_kwh": 92,
            "index": "moderate"
        },
        {
            "from": "2026-07-22T16:00Z",
            "to": "2026-07-22T16:30Z",
            "gco2_per_kwh": 106,
            "index": "moderate"
        },
        {
            "from": "2026-07-22T16:30Z",
            "to": "2026-07-22T17:00Z",
            "gco2_per_kwh": 132,
            "index": "moderate"
        },
        {
            "from": "2026-07-22T17:00Z",
            "to": "2026-07-22T17:30Z",
            "gco2_per_kwh": 152,
            "index": "moderate"
        },
        {
            "from": "2026-07-22T17:30Z",
            "to": "2026-07-22T18:00Z",
            "gco2_per_kwh": 166,
            "index": "moderate"
        },
        {
            "from": "2026-07-22T18:00Z",
            "to": "2026-07-22T18:30Z",
            "gco2_per_kwh": 172,
            "index": "high"
        },
        {
            "from": "2026-07-22T18:30Z",
            "to": "2026-07-22T19:00Z",
            "gco2_per_kwh": 182,
            "index": "high"
        },
        {
            "from": "2026-07-22T19:00Z",
            "to": "2026-07-22T19:30Z",
            "gco2_per_kwh": 193,
            "index": "high"
        },
        {
            "from": "2026-07-22T19:30Z",
            "to": "2026-07-22T20:00Z",
            "gco2_per_kwh": 197,
            "index": "high"
        },
        {
            "from": "2026-07-22T20:00Z",
            "to": "2026-07-22T20:30Z",
            "gco2_per_kwh": 205,
            "index": "high"
        },
        {
            "from": "2026-07-22T20:30Z",
            "to": "2026-07-22T21:00Z",
            "gco2_per_kwh": 210,
            "index": "high"
        },
        {
            "from": "2026-07-22T21:00Z",
            "to": "2026-07-22T21:30Z",
            "gco2_per_kwh": 212,
            "index": "high"
        },
        {
            "from": "2026-07-22T21:30Z",
            "to": "2026-07-22T22:00Z",
            "gco2_per_kwh": 211,
            "index": "high"
        },
        {
            "from": "2026-07-22T22:00Z",
            "to": "2026-07-22T22:30Z",
            "gco2_per_kwh": 208,
            "index": "high"
        },
        {
            "from": "2026-07-22T22:30Z",
            "to": "2026-07-22T23:00Z",
            "gco2_per_kwh": 200,
            "index": "high"
        },
        {
            "from": "2026-07-22T23:00Z",
            "to": "2026-07-22T23:30Z",
            "gco2_per_kwh": 197,
            "index": "high"
        },
        {
            "from": "2026-07-22T23:30Z",
            "to": "2026-07-23T00:00Z",
            "gco2_per_kwh": 195,
            "index": "high"
        },
        {
            "from": "2026-07-23T00:00Z",
            "to": "2026-07-23T00:30Z",
            "gco2_per_kwh": 192,
            "index": "high"
        },
        {
            "from": "2026-07-23T00:30Z",
            "to": "2026-07-23T01:00Z",
            "gco2_per_kwh": 191,
            "index": "high"
        },
        {
            "from": "2026-07-23T01:00Z",
            "to": "2026-07-23T01:30Z",
            "gco2_per_kwh": 186,
            "index": "high"
        },
        {
            "from": "2026-07-23T01:30Z",
            "to": "2026-07-23T02:00Z",
            "gco2_per_kwh": 176,
            "index": "high"
        },
        {
            "from": "2026-07-23T02:00Z",
            "to": "2026-07-23T02:30Z",
            "gco2_per_kwh": 163,
            "index": "moderate"
        },
        {
            "from": "2026-07-23T02:30Z",
            "to": "2026-07-23T03:00Z",
            "gco2_per_kwh": 149,
            "index": "moderate"
        },
        {
            "from": "2026-07-23T03:00Z",
            "to": "2026-07-23T03:30Z",
            "gco2_per_kwh": 132,
            "index": "moderate"
        },
        {
            "from": "2026-07-23T03:30Z",
            "to": "2026-07-23T04:00Z",
            "gco2_per_kwh": 118,
            "index": "moderate"
        },
        {
            "from": "2026-07-23T04:00Z",
            "to": "2026-07-23T04:30Z",
            "gco2_per_kwh": 109,
            "index": "moderate"
        },
        {
            "from": "2026-07-23T04:30Z",
            "to": "2026-07-23T05:00Z",
            "gco2_per_kwh": 108,
            "index": "moderate"
        },
        {
            "from": "2026-07-23T05:00Z",
            "to": "2026-07-23T05:30Z",
            "gco2_per_kwh": 119,
            "index": "moderate"
        },
        {
            "from": "2026-07-23T05:30Z",
            "to": "2026-07-23T06:00Z",
            "gco2_per_kwh": 127,
            "index": "moderate"
        },
        {
            "from": "2026-07-23T06:00Z",
            "to": "2026-07-23T06:30Z",
            "gco2_per_kwh": 147,
            "index": "moderate"
        },
        {
            "from": "2026-07-23T06:30Z",
            "to": "2026-07-23T07:00Z",
            "gco2_per_kwh": 149,
            "index": "moderate"
        },
        {
            "from": "2026-07-23T07:00Z",
            "to": "2026-07-23T07:30Z",
            "gco2_per_kwh": 152,
            "index": "moderate"
        },
        {
            "from": "2026-07-23T07:30Z",
            "to": "2026-07-23T08:00Z",
            "gco2_per_kwh": 148,
            "index": "moderate"
        },
        {
            "from": "2026-07-23T08:00Z",
            "to": "2026-07-23T08:30Z",
            "gco2_per_kwh": 142,
            "index": "moderate"
        },
        {
            "from": "2026-07-23T08:30Z",
            "to": "2026-07-23T09:00Z",
            "gco2_per_kwh": 128,
            "index": "moderate"
        },
        {
            "from": "2026-07-23T09:00Z",
            "to": "2026-07-23T09:30Z",
            "gco2_per_kwh": 122,
            "index": "moderate"
        },
        {
            "from": "2026-07-23T09:30Z",
            "to": "2026-07-23T10:00Z",
            "gco2_per_kwh": 117,
            "index": "moderate"
        },
        {
            "from": "2026-07-23T10:00Z",
            "to": "2026-07-23T10:30Z",
            "gco2_per_kwh": 114,
            "index": "moderate"
        },
        {
            "from": "2026-07-23T10:30Z",
            "to": "2026-07-23T11:00Z",
            "gco2_per_kwh": 116,
            "index": "moderate"
        },
        {
            "from": "2026-07-23T11:00Z",
            "to": "2026-07-23T11:30Z",
            "gco2_per_kwh": 118,
            "index": "moderate"
        },
        {
            "from": "2026-07-23T11:30Z",
            "to": "2026-07-23T12:00Z",
            "gco2_per_kwh": 116,
            "index": "moderate"
        },
        {
            "from": "2026-07-23T12:00Z",
            "to": "2026-07-23T12:30Z",
            "gco2_per_kwh": 115,
            "index": "moderate"
        },
        {
            "from": "2026-07-23T12:30Z",
            "to": "2026-07-23T13:00Z",
            "gco2_per_kwh": 114,
            "index": "moderate"
        },
        {
            "from": "2026-07-23T13:00Z",
            "to": "2026-07-23T13:30Z",
            "gco2_per_kwh": 114,
            "index": "moderate"
        },
        {
            "from": "2026-07-23T13:30Z",
            "to": "2026-07-23T14:00Z",
            "gco2_per_kwh": 116,
            "index": "moderate"
        }
    ]
}
Previsão de Rede — TRECHOS DE CÓDIGO

curl --location --request GET 'https://zylalabs.com/api/13267/carbon+footprint+and+emission+factor+api/27332/grid+forecast?zone=GB&hours=24' --header 'Authorization: Bearer YOUR_API_KEY' 


    
Requisição
A janela mais limpa para executar uma carga com consciência de carbono para deslocamento de carga com % de economia em relação à média do período
Endpoint ID: 27333
GET https://zylalabs.com/api/13267/carbon+footprint+and+emission+factor+api/27333/best+time+to+run
PARÂMETROS DE ENTRADA

Melhor Hora para Correr — Recursos do endpoint

Objeto Descrição
duration Opcional Load length in hours
within Opcional Search horizon in hours (≤48).
zone Opcional Zone - GB only

Solicitações gratuitas de teste restantes: 3 de 3.


PARÂMETROS DE ENTRADA

duration
within
zone
RESPOSTA DE EXEMPLO DA API
JSON
{
    "zone": "GB",
    "duration_hours": 3,
    "within_hours": 24,
    "best_window": {
        "from": "2026-07-22T13:00Z",
        "to": "2026-07-22T16:00Z",
        "avg_gco2_per_kwh": 81.3,
        "index": "low"
    },
    "period_avg_gco2_per_kwh": 143.5,
    "savings_vs_average_pct": 43.3,
    "recommendation": "Run your 3.0h load starting 2026-07-22T13:00Z (UTC) - ~43.3% lower carbon than the 24h average."
}
Melhor Hora para Correr — TRECHOS DE CÓDIGO

curl --location --request GET 'https://zylalabs.com/api/13267/carbon+footprint+and+emission+factor+api/27333/best+time+to+run?duration=3&within=24&zone=GB' --header 'Authorization: Bearer YOUR_API_KEY' 


    
Requisição
CO₂e ponderado pelo tempo de uso para um perfil de uso de kWh horário usando a previsão do GB
Endpoint ID: 27334
GET https://zylalabs.com/api/13267/carbon+footprint+and+emission+factor+api/27334/time-weighted+footprint
PARÂMETROS DE ENTRADA

Pegada ponderada pelo tempo — Recursos do endpoint

Objeto Descrição
zone Opcional Zone - GB Only.
profile Obrigatório Comma-separated hourly kWh, starting now.

Solicitações gratuitas de teste restantes: 3 de 3.


PARÂMETROS DE ENTRADA

zone
profile
RESPOSTA DE EXEMPLO DA API
JSON
{
    "zone": "GB",
    "hours": 4,
    "co2e_kg": 0.6491,
    "co2e_tonnes": 0.000649,
    "co2e_kg_if_flat_average": 0.6208,
    "note": "Time-of-use weighted using the GB forecast starting now.",
    "breakdown": [
        {
            "hour": 0,
            "kwh": 1.2,
            "gco2_per_kwh": 84.5,
            "co2e_kg": 0.1014
        },
        {
            "hour": 1,
            "kwh": 0.8,
            "gco2_per_kwh": 89,
            "co2e_kg": 0.0712
        },
        {
            "hour": 2,
            "kwh": 2,
            "gco2_per_kwh": 119,
            "co2e_kg": 0.238
        },
        {
            "hour": 3,
            "kwh": 1.5,
            "gco2_per_kwh": 159,
            "co2e_kg": 0.2385
        }
    ]
}
Pegada ponderada pelo tempo — TRECHOS DE CÓDIGO

curl --location --request GET 'https://zylalabs.com/api/13267/carbon+footprint+and+emission+factor+api/27334/time-weighted+footprint?zone=GB&profile=1.2,0.8,2.0,1.5' --header 'Authorization: Bearer YOUR_API_KEY' 


    
Requisição
As categorias válidas, unidades, regiões, anos e regiões de grade - chame isso para descobrir entradas válidas antes de construir um pedido
Endpoint ID: 27335
GET https://zylalabs.com/api/13267/carbon+footprint+and+emission+factor+api/27335/taxonomy
PARÂMETROS DE ENTRADA

Solicitações gratuitas de teste restantes: 3 de 3.

Este endpoint não requer parâmetros de entrada.

RESPOSTA DE EXEMPLO DA API
JSON
{
    "categories": [
        {
            "factors": 49,
            "name": "Bioenergy"
        },
        {
            "factors": 28,
            "name": "Business travel- air"
        },
        {
            "factors": 168,
            "name": "Business travel- land"
        },
        {
            "factors": 3,
            "name": "Business travel- sea"
        },
        {
            "factors": 162,
            "name": "Delivery vehicles"
        },
        {
            "factors": 213,
            "name": "Electricity"
        },
        {
            "factors": 289,
            "name": "Freighting goods"
        },
        {
            "factors": 117,
            "name": "Fuels"
        },
        {
            "factors": 2,
            "name": "Heat and steam"
        },
        {
            "factors": 3,
            "name": "Homeworking"
        },
        {
            "factors": 39,
            "name": "Hotel stay"
        },
        {
            "factors": 1,
            "name": "Managed assets- electricity"
        },
        {
            "factors": 237,
            "name": "Managed assets- vehicles"
        },
        {
            "factors": 70,
            "name": "Material use"
        },
        {
            "factors": 156,
            "name": "Passenger vehicles"
        },
        {
            "factors": 359,
            "name": "Refrigerant & other"
        },
        {
            "factors": 63,
            "name": "Stationary Combustion"
        },
        {
            "factors": 2,
            "name": "Transmission and distribution"
        },
        {
            "factors": 1,
            "name": "UK electricity"
        },
        {
            "factors": 68,
            "name": "UK electricity T&D for EVs"
        },
        {
            "factors": 68,
            "name": "UK electricity for EVs"
        },
        {
            "factors": 2,
            "name": "WTT- UK electricity"
        },
        {
            "factors": 49,
            "name": "WTT- bioenergy"
        },
        {
            "factors": 28,
            "name": "WTT- business travel- air"
        },
        {
            "factors": 3,
            "name": "WTT- business travel- sea"
        },
        {
            "factors": 289,
            "name": "WTT- delivery vehs & freight"
        },
        {
            "factors": 114,
            "name": "WTT- fuels"
        },
        {
            "factors": 3,
            "name": "WTT- heat and steam"
        },
        {
            "factors": 168,
            "name": "WTT- pass vehs & travel- land"
        },
        {
            "factors": 134,
            "name": "Waste disposal"
        },
        {
            "factors": 2,
            "name": "Water supply"
        },
        {
            "factors": 2,
            "name": "Water treatment"
        }
    ],
    "grid_regions": [
        "ABW",
        "AFG",
        "AGO",
        "ARE",
        "ARG",
        "ARM",
        "ASM",
        "ATG",
        "AUS",
        "AUT",
        "AZE",
        "BDI",
        "BEL",
        "BEN",
        "BFA",
        "BGD",
        "BGR",
        "BHR",
        "BHS",
        "BIH",
        "BLR",
        "BLZ",
        "BMU",
        "BOL",
        "BRA",
        "BRB",
        "BRN",
        "BTN",
        "BWA",
        "CAF",
        "CAN",
        "CHE",
        "CHL",
        "CHN",
        "CIV",
        "CMR",
        "COD",
        "COG",
        "COK",
        "COL",
        "COM",
        "CPV",
        "CRI",
        "CUB",
        "CYM",
        "CYP",
        "CZE",
        "DEU",
        "DJI",
        "DMA",
        "DNK",
        "DOM",
        "DZA",
        "ECU",
        "EGY",
        "ERI",
        "ESH",
        "ESP",
        "EST",
        "ETH",
        "FIN",
        "FJI",
        "FLK",
        "FRA",
        "FRO",
        "GAB",
        "GBR",
        "GEO",
        "GHA",
        "GIB",
        "GIN",
        "GLP",
        "GMB",
        "GNB",
        "GNQ",
        "GRC",
        "GRD",
        "GRL",
        "GTM",
        "GUF",
        "GUM",
        "GUY",
        "HKG",
        "HND",
        "HRV",
        "HTI",
        "HUN",
        "IDN",
        "IND",
        "IRL",
        "IRN",
        "IRQ",
        "ISL",
        "ISR",
        "ITA",
        "JAM",
        "JOR",
        "JPN",
        "KAZ",
        "KEN",
        "KGZ",
        "KHM",
        "KIR",
        "KNA",
        "KOR",
        "KWT",
        "LAO",
        "LBN",
        "LBR",
        "LBY",
        "LCA",
        "LKA",
        "LSO",
        "LTU",
        "LUX",
        "LVA",
        "MAC",
        "MAR",
        "MDA",
        "MDG",
        "MDV",
        "MEX",
        "MKD",
        "MLI",
        "MLT",
        "MMR",
        "MNE",
        "MNG",
        "MOZ",
        "MRT",
        "MSR",
        "MTQ",
        "MUS",
        "MWI",
        "MYS",
        "NAM",
        "NCL",
        "NER",
        "NGA",
        "NIC",
        "NLD",
        "NOR",
        "NPL",
        "NRU",
        "NZL",
        "OMN",
        "PAK",
        "PAN",
        "PER",
        "PHL",
        "PNG",
        "POL",
        "PRI",
        "PRK",
        "PRT",
        "PRY",
        "PSE",
        "PYF",
        "QAT",
        "REU",
        "ROU",
        "RUS",
        "RWA",
        "SAU",
        "SDN",
        "SEN",
        "SGP",
        "SHN",
        "SLB",
        "SLE",
        "SLV",
        "SOM",
        "SPM",
        "SRB",
        "SSD",
        "STP",
        "SUR",
        "SVK",
        "SVN",
        "SWE",
        "SWZ",
        "SYC",
        "SYR",
        "TCA",
        "TCD",
        "TGO",
        "THA",
        "TJK",
        "TKM",
        "TLS",
        "TON",
        "TTO",
        "TUN",
        "TUR",
        "TWN",
        "TZA",
        "UGA",
        "UKR",
        "URY",
        "USA",
        "UZB",
        "VCT",
        "VEN",
        "VGB",
        "VIR",
        "VNM",
        "VUT",
        "WSM",
        "XKX",
        "YEM",
        "ZAF",
        "ZMB",
        "ZWE"
    ],
    "grid_years": [
        2000,
        2001,
        2002,
        2003,
        2004,
        2005,
        2006,
        2007,
        2008,
        2009,
        2010,
        2011,
        2012,
        2013,
        2014,
        2015,
        2016,
        2017,
        2018,
        2019,
        2020,
        2021,
        2022,
        2023,
        2024,
        2025
    ],
    "regions": [
        "ABW",
        "AFG",
        "AGO",
        "ARE",
        "ARG",
        "ARM",
        "ASM",
        "ATG",
        "AUS",
        "AUT",
        "AZE",
        "BDI",
        "BEL",
        "BEN",
        "BFA",
        "BGD",
        "BGR",
        "BHR",
        "BHS",
        "BIH",
        "BLR",
        "BLZ",
        "BMU",
        "BOL",
        "BRA",
        "BRB",
        "BRN",
        "BTN",
        "BWA",
        "CAF",
        "CAN",
        "CHE",
        "CHL",
        "CHN",
        "CIV",
        "CMR",
        "COD",
        "COG",
        "COK",
        "COL",
        "COM",
        "CPV",
        "CRI",
        "CUB",
        "CYM",
        "CYP",
        "CZE",
        "DEU",
        "DJI",
        "DMA",
        "DNK",
        "DOM",
        "DZA",
        "ECU",
        "EGY",
        "ERI",
        "ESH",
        "ESP",
        "EST",
        "ETH",
        "FIN",
        "FJI",
        "FLK",
        "FRA",
        "FRO",
        "GAB",
        "GB",
        "GBR",
        "GEO",
        "GHA",
        "GIB",
        "GIN",
        "GLP",
        "GMB",
        "GNB",
        "GNQ",
        "GRC",
        "GRD",
        "GRL",
        "GTM",
        "GUF",
        "GUM",
        "GUY",
        "HKG",
        "HND",
        "HRV",
        "HTI",
        "HUN",
        "IDN",
        "IND",
        "IRL",
        "IRN",
        "IRQ",
        "ISL",
        "ISR",
        "ITA",
        "JAM",
        "JOR",
        "JPN",
        "KAZ",
        "KEN",
        "KGZ",
        "KHM",
        "KIR",
        "KNA",
        "KOR",
        "KWT",
        "LAO",
        "LBN",
        "LBR",
        "LBY",
        "LCA",
        "LKA",
        "LSO",
        "LTU",
        "LUX",
        "LVA",
        "MAC",
        "MAR",
        "MDA",
        "MDG",
        "MDV",
        "MEX",
        "MKD",
        "MLI",
        "MLT",
        "MMR",
        "MNE",
        "MNG",
        "MOZ",
        "MRT",
        "MSR",
        "MTQ",
        "MUS",
        "MWI",
        "MYS",
        "NAM",
        "NCL",
        "NER",
        "NGA",
        "NIC",
        "NLD",
        "NOR",
        "NPL",
        "NRU",
        "NZL",
        "OMN",
        "PAK",
        "PAN",
        "PER",
        "PHL",
        "PNG",
        "POL",
        "PRI",
        "PRK",
        "PRT",
        "PRY",
        "PSE",
        "PYF",
        "QAT",
        "REU",
        "ROU",
        "RUS",
        "RWA",
        "SAU",
        "SDN",
        "SEN",
        "SGP",
        "SHN",
        "SLB",
        "SLE",
        "SLV",
        "SOM",
        "SPM",
        "SRB",
        "SSD",
        "STP",
        "SUR",
        "SVK",
        "SVN",
        "SWE",
        "SWZ",
        "SYC",
        "SYR",
        "TCA",
        "TCD",
        "TGO",
        "THA",
        "TJK",
        "TKM",
        "TLS",
        "TON",
        "TTO",
        "TUN",
        "TUR",
        "TWN",
        "TZA",
        "UGA",
        "UKR"
    ],
    "_note": "Response truncated for documentation purposes"
}
Taxonomia — TRECHOS DE CÓDIGO

curl --location --request GET 'https://zylalabs.com/api/13267/carbon+footprint+and+emission+factor+api/27335/taxonomy' --header 'Authorization: Bearer YOUR_API_KEY' 


    
Requisição
Retorne um único fator de emissão com plena proveniência e um nível de qualidade de dados
Endpoint ID: 27336
GET https://zylalabs.com/api/13267/carbon+footprint+and+emission+factor+api/27336/get+factor+by+id
PARÂMETROS DE ENTRADA

Obter Fator por Id — Recursos do endpoint

Objeto Descrição
id Obrigatório The factor id.

Solicitações gratuitas de teste restantes: 3 de 3.


PARÂMETROS DE ENTRADA

id
RESPOSTA DE EXEMPLO DA API
JSON
{
    "activity": "bituminous",
    "activity_label": "Bituminous",
    "category": "Stationary Combustion",
    "co2e_kg_per_unit": 94.012,
    "gas_breakdown": {
        "ch4": 0.308,
        "co2": 93.28,
        "n2o": 0.424
    },
    "id": "epa-2025-stationary-bituminous",
    "path": "Stationary Combustion / Bituminous",
    "region": "US",
    "scope": 1,
    "unit": "mmBtu",
    "year": 2025,
    "data_quality": {
        "tier": "A",
        "score": 9,
        "max": 9,
        "basis": [
            "US federal government",
            "vintage 2025",
            "activity-specific"
        ],
        "note": "heuristic (authority x specificity x vintage); not statistical uncertainty"
    }
}
Obter Fator por Id — TRECHOS DE CÓDIGO

curl --location --request GET 'https://zylalabs.com/api/13267/carbon+footprint+and+emission+factor+api/27336/get+factor+by+id?id=epa-2025-stationary-bituminous' --header 'Authorization: Bearer YOUR_API_KEY' 


    
Requisição
Valores ano a ano para um fator (UK DEFRA 2023–2025) com a mudança total
Endpoint ID: 27337
GET https://zylalabs.com/api/13267/carbon+footprint+and+emission+factor+api/27337/factor+history
PARÂMETROS DE ENTRADA

Histórico de Fatores — Recursos do endpoint

Objeto Descrição
id Obrigatório The factor id.

Solicitações gratuitas de teste restantes: 3 de 3.


PARÂMETROS DE ENTRADA

id
RESPOSTA DE EXEMPLO DA API
JSON
{
    "id": "defra-2025-fuels-liquid-fuels-diesel-100-mineral-diesel-litres",
    "identity": "fuels-liquid-fuels-diesel-100-mineral-diesel-litres",
    "unit": "litres",
    "history": {
        "2023": 2.659372,
        "2024": 2.66155,
        "2025": 2.66155
    },
    "change_2023_to_latest": {
        "from_year": "2023",
        "to_year": "2025",
        "absolute": 0.002178,
        "percent": 0.08
    }
}
Histórico de Fatores — TRECHOS DE CÓDIGO

curl --location --request GET 'https://zylalabs.com/api/13267/carbon+footprint+and+emission+factor+api/27337/factor+history?id=defra-2025-fuels-liquid-fuels-diesel-100-mineral-diesel-litres' --header 'Authorization: Bearer YOUR_API_KEY' 


    

Chave de acesso à API e autenticação

Após se cadastrar, cada desenvolvedor recebe uma chave de acesso à API pessoal, uma combinação única de letras e dígitos para acessar nosso endpoint de API. Para autenticar com a Pegada de Carbono e Fator de Emissão API basta incluir seu token Bearer no cabeçalho Authorization.

Cabeçalhos
Cabeçalho Descrição
Authorization Obrigatório Deve ser Bearer access_key. Veja "Sua chave de acesso à API" acima quando você estiver inscrito.

Sem compromisso de longo prazo. Faça upgrade, downgrade ou cancele a qualquer momento. O teste gratuito inclui até 50 requisições.

(Economize 2 meses com cobrança anual 🎉)

🚀 Plano Empresarial

A partir de
$ 10.000/Ano


  • Volume personalizado
  • Limite de taxa personalizado
  • Suporte ao cliente especializado
  • Monitoramento de API em tempo real

Visão Geral

Transforme qualquer atividade, gasto, frete ou voo em kg de CO₂e a partir de dados abertos e fontes (UK DEFRA, US EPA, Ember, IPCC) além da intensidade de carbono ao vivo da rede para GB, EUA e UE e 213 países

Pegada de Carbono e Fator de Emissão API FAQs

O endpoint de Estimativa de CO2e retorna dados sobre emissões de dióxido de carbono equivalente (CO₂e) com base em atividades específicas, incluindo a quantidade, unidade, região, ano e emissões calculadas em kg e toneladas. Também fornece fatores de emissão com informações detalhadas sobre a proveniência e a qualidade dos dados

Os campos-chave na resposta incluem "atividade", "quantidade", "unidade", "região", "ano", "co2e_kg", "co2e_toneladas" e "fator". O objeto "fator" contém detalhes como "id", "co2e_kg_por_unidade", "fonte" e "qualidade_dos_dados"

Os usuários podem especificar parâmetros como "atividade" "quantidade" "unidade" "região" e "ano" para personalizar suas solicitações Os valores aceitos dependem do tipo de atividade e da região selecionada

Os dados da resposta estão estruturados no formato JSON com os principais dados de emissão no nível superior e um objeto "fator" aninhado contendo informações detalhadas sobre o fator de emissão incluindo métricas de origem e qualidade

Os dados são provenientes de organizações respeitáveis como o DEFRA do Reino Unido, a EPA dos EUA, Ember e o IPCC Cada fator de emissão inclui sua fonte, ano e licença, garantindo transparência e confiabilidade

A precisão dos dados é mantida através de fontes rigorosas de órgãos autoritativos e um sistema transparente de níveis de qualidade de dados Cada fator é avaliado quanto à sua confiabilidade com base na autoridade na especificidade e na antiguidade

Casos de uso típicos incluem contabilidade de carbono para empresas, relatórios de sustentabilidade e avaliações de impacto ambiental Os usuários podem estimar emissões de várias atividades como transporte, uso de energia e consumo de materiais

Os usuários podem aproveitar os dados retornados para calcular sua pegada de carbono comparar emissões em diferentes atividades e tomar decisões informadas para reduzir seu impacto ambiental com base em fatores de emissão precisos

Perguntas Frequentes Gerais

O Zyla API Hub é como uma grande loja de APIs, onde você pode encontrar milhares delas em um só lugar. Também oferecemos suporte dedicado e monitoramento em tempo real de todas as APIs. Após se cadastrar, você pode escolher quais APIs deseja usar. Lembre-se apenas de que cada API precisa de sua própria assinatura. Mas se você se inscrever em várias, usará a mesma chave para todas elas, facilitando as coisas para você.
Os preços são listados em USD (Dólar Americano), EUR (Euro), CAD (Dólar Canadense), AUD (Dólar Australiano) e GBP (Libra Esterlina). Aceitamos todos os principais cartões de débito e crédito. Nosso sistema de pagamento usa a mais recente tecnologia de segurança e é operado pela Stripe, uma das empresas de pagamento mais confiáveis do mundo. Se tiver problemas para pagar com cartão, entre em contato conosco em [email protected]

Além disso, se você já tiver uma assinatura ativa em qualquer uma dessas moedas (USD, EUR, CAD, AUD, GBP), essa moeda será mantida para assinaturas subsequentes. Você pode alterar a moeda a qualquer momento, desde que não tenha assinaturas ativas.
A moeda local exibida na página de preços é baseada no país do seu endereço IP e é fornecida apenas como referência. Os preços reais são em USD (Dólar Americano). Ao efetuar o pagamento, a cobrança aparecerá no extrato do seu cartão em USD, mesmo que você veja o valor equivalente em sua moeda local em nosso site. Isso significa que você não pode pagar diretamente com sua moeda local.
Ocasionalmente, o banco pode recusar a cobrança devido às configurações de proteção contra fraude. Sugerimos contatar seu banco inicialmente para verificar se estão bloqueando nossas cobranças. Você também pode acessar o Portal de Cobrança e alterar o cartão associado para realizar o pagamento. Se isso não funcionar e precisar de mais ajuda, entre em contato com nossa equipe em [email protected]
Os preços são determinados por uma assinatura recorrente mensal ou anual, dependendo do plano escolhido.
As chamadas de API são descontadas do seu plano com base nas requisições bem-sucedidas. Cada plano possui um número específico de chamadas por mês. Apenas chamadas bem-sucedidas, indicadas por uma resposta com Status 200, serão contabilizadas, garantindo que falhas não afetem sua cota mensal.
O Zyla API Hub funciona com um sistema de assinatura mensal recorrente. Seu ciclo de cobrança começa no dia em que você compra um dos planos pagos e será renovado no mesmo dia do mês seguinte. Portanto, cancele sua assinatura com antecedência se quiser evitar cobranças futuras.
Para fazer upgrade do seu plano atual, acesse a página de preços da API e selecione o novo plano desejado. O upgrade é instantâneo, permitindo aproveitar imediatamente os recursos do novo plano. Observe que as chamadas restantes do plano anterior não serão transferidas; você será cobrado pelo valor integral do novo plano.
Para verificar quantas chamadas de API restam para o mês atual, consulte o campo 'X-Zyla-API-Calls-Monthly-Remaining' no cabeçalho da resposta. Por exemplo, se seu plano permite 1.000 requisições por mês e você usou 100, este campo no cabeçalho da resposta indicará 900 chamadas restantes.
Para ver o número máximo de requisições de API que seu plano permite, verifique o cabeçalho de resposta 'X-Zyla-RateLimit-Limit'. Por exemplo, se seu plano inclui 1.000 requisições por mês, este cabeçalho exibirá 1.000.
O cabeçalho 'X-Zyla-RateLimit-Reset' mostra o número de segundos até seu limite de taxa ser redefinido. Isso informa quando sua contagem de requisições começará do zero. Por exemplo, se exibir 3.600, significa que restam 3.600 segundos até o limite ser redefinido.
Sim, você pode cancelar seu plano a qualquer momento acessando sua conta e selecionando a opção de cancelamento na página de Cobrança. Observe que upgrades, downgrades e cancelamentos têm efeito imediato. Além disso, após o cancelamento, você não terá mais acesso ao serviço, mesmo que ainda tenha chamadas restantes na sua cota.
Para oferecer a oportunidade de experimentar nossas APIs sem compromisso, oferecemos um teste gratuito de 7 dias que permite realizar até 50 chamadas de API sem custo. Esse teste pode ser usado apenas uma vez; recomendamos aplicá-lo à API que mais interessa. Embora a maioria das APIs ofereça teste gratuito, algumas podem não oferecer. O teste termina após 7 dias ou quando você atingir 50 requisições, o que ocorrer primeiro. Se atingir o limite, será necessário "Iniciar seu plano pago" para continuar. Você encontra esse botão no perfil em Assinatura -> Escolha a API -> aba Preços. Se não cancelar até o 7º dia, sua assinatura será cobrada automaticamente, liberando todas as chamadas do plano.
Após 7 dias, será cobrado o valor total do plano ao qual você estava inscrito durante o teste. Portanto, é importante cancelar antes do término do período. Solicitações de reembolso por esquecimento de cancelamento não são aceitas.
Ao assinar um teste gratuito de API, você pode fazer até 50 chamadas. Se desejar fazer chamadas adicionais além desse limite, a API solicitará que você "Inicie seu plano pago". Você encontra o botão no perfil em Assinatura -> Escolha a API -> aba Preços.
As Ordens de Pagamento são processadas entre os dias 20 e 30 de cada mês. Se você enviar sua solicitação antes do dia 20, seu pagamento será processado dentro desse período.
Você pode nos contatar via chat para receber assistência imediata. Estamos online de 8h às 17h (EST). Se nos contatar após esse horário, retornaremos o mais rápido possível. Além disso, você pode enviar um e-mail para [email protected]

APIs relacionadas