Huella de carbono y factor de emisión API

API ID 13267

Convierte cualquier actividad gasto flete o vuelo en kg CO₂e a partir de datos abiertos y fuentes (UK DEFRA US EPA Ember IPCC) además de la intensidad de carbono de la red en vivo para GB US y UE y 213 países

265 ms resp. promedio

Documentación de la API

Endpoints

Solicitud
Convertir una actividad + cantidad en kg CO₂e utilizando factores de emisión abiertos (DEFRA/EPA)
Endpoint ID: 27322
GET https://zylalabs.com/api/13267/carbon+footprint+and+emission+factor+api/27322/estimate+co2e
PARÁMETROS DE ENTRADA

Estimar CO2e — Características del Endpoint

Objeto Descripción
amount Requerido Quantity of the activity, expressed in unit.
unit Requerido 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).

Pruebas gratuitas restantes: 3 de 3.


PARÁMETROS DE ENTRADA

amount
unit
activity
region
year
factor_id
RESPUESTA DE EJEMPLO DE LA 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"
    ]
}
Estimar CO2e — CÓDIGOS DE EJEMPLO

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' 


    
Solicitud
Estime el CO₂e a partir del gasto en dólares estadounidenses por categoría/NAICS (EPA USEEIO), ajustado a la inflación con base en 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

Alcance 3 basado en el gasto — Características del Endpoint

Objeto Descripción
amount Requerido 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

Pruebas gratuitas restantes: 3 de 3.


PARÁMETROS DE ENTRADA

amount
category
naics
currency
year
RESPUESTA DE EJEMPLO DE LA 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)"
    ]
}
Alcance 3 basado en el gasto — CÓDIGOS DE EJEMPLO

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' 


    
Solicitud
CO₂e para el movimiento de mercancías según ISO 14083/GLEC (peso × distancia × factor de carga 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

Freight CO2e — Características del Endpoint

Objeto Descripción
mode Requerido road, hgv, van, rail, sea, container, bulk, tanker, air.
weight_tonnes Requerido Weight of goods, in tonnes
distance_km Requerido Distance travelled, in km.
factor_id Opcional Pin an exact DEFRA freight factor.

Pruebas gratuitas restantes: 3 de 3.


PARÁMETROS DE ENTRADA

mode
weight_tonnes
distance_km
factor_id
RESPUESTA DE EJEMPLO DE LA 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"
    ]
}
Freight CO2e — CÓDIGOS DE EJEMPLO

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' 


    
Solicitud
Vuelo CO₂e entre dos aeropuertos (o una distancia dada) con un multiplicador de forzamiento radiativo configurable
Endpoint ID: 27325
GET https://zylalabs.com/api/13267/carbon+footprint+and+emission+factor+api/27325/flight+co2e
PARÁMETROS DE ENTRADA

Vuelo CO2e — Características del Endpoint

Objeto Descripción
from Requerido 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.

Pruebas gratuitas restantes: 3 de 3.


PARÁMETROS DE ENTRADA

from
to
distance_km
class
passengers
round_trip
rf
RESPUESTA DE EJEMPLO DE LA 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"
    ]
}
Vuelo CO2e — CÓDIGOS DE EJEMPLO

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' 


    
Solicitud
Potencial de calentamiento global y CO₂e para un refrigerante o gas F (IPCC AR4/5/6; mezclas ponderadas por masa)
Endpoint ID: 27326
GET https://zylalabs.com/api/13267/carbon+footprint+and+emission+factor+api/27326/refrigerant+gwp
PARÁMETROS DE ENTRADA

GWP del refrigerante — Características del Endpoint

Objeto Descripción
gas Requerido 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.

Pruebas gratuitas restantes: 3 de 3.


PARÁMETROS DE ENTRADA

gas
kg
assessment
horizon
RESPUESTA DE EJEMPLO DE LA 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 del refrigerante — CÓDIGOS DE EJEMPLO

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' 


    
Solicitud
Búsqueda de texto completo en el catálogo de factores de emisión con filtros opcionales
Endpoint ID: 27327
GET https://zylalabs.com/api/13267/carbon+footprint+and+emission+factor+api/27327/search+factors
PARÁMETROS DE ENTRADA

Factores de búsqueda — Características del Endpoint

Objeto Descripción
q Requerido 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).

Pruebas gratuitas restantes: 3 de 3.


PARÁMETROS DE ENTRADA

q
category
region
unit
year
limit
RESPUESTA DE EJEMPLO DE LA 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"
            }
        }
    ]
}
Factores de búsqueda — CÓDIGOS DE EJEMPLO

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' 


    
Solicitud
Cómo cambió el valor de un factor entre dos ediciones
Endpoint ID: 27328
GET https://zylalabs.com/api/13267/carbon+footprint+and+emission+factor+api/27328/factor+diff
PARÁMETROS DE ENTRADA

Factor Diff — Características del Endpoint

Objeto Descripción
id Requerido The factor id.
from Opcional The start year.
to Opcional The end year.

Pruebas gratuitas restantes: 3 de 3.


PARÁMETROS DE ENTRADA

id
from
to
RESPUESTA DE EJEMPLO DE LA 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"
}
Factor Diff — CÓDIGOS DE EJEMPLO

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' 


    
Solicitud
Encuentra las industrias NAICS de EE.UU. y su kg CO₂e por USD para la estimación basada en el gasto
Endpoint ID: 27329
GET https://zylalabs.com/api/13267/carbon+footprint+and+emission+factor+api/27329/search+industries+-naics
PARÁMETROS DE ENTRADA

Buscar industrias -NAICS — Características del Endpoint

Objeto Descripción
q Requerido Free-text industry query.
limit Opcional Max results (<100)

Pruebas gratuitas restantes: 3 de 3.


PARÁMETROS DE ENTRADA

q
limit
RESPUESTA DE EJEMPLO DE LA 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
        }
    ]
}
Buscar industrias -NAICS — CÓDIGOS DE EJEMPLO

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' 


    
Solicitud
Intensidad de carbono de la red eléctrica anual para 213 países (Ember) y 27 subregiones eGRID de EE. UU.
Endpoint ID: 27330
GET https://zylalabs.com/api/13267/carbon+footprint+and+emission+factor+api/27330/grid+intensity+-+annual
PARÁMETROS DE ENTRADA

Intensidad de la red - anual — Características del Endpoint

Objeto Descripción
region Requerido ISO-3 code, US/UK/EU, or a US eGRID subregion (CAMX, US-RFCE).
year Opcional Year; defaults to latest.

Pruebas gratuitas restantes: 3 de 3.


PARÁMETROS DE ENTRADA

region
year
RESPUESTA DE EJEMPLO DE LA API
JSON
{
    "region": "US",
    "iso3": "USA",
    "year": 2025,
    "gco2_per_kwh": 384.4,
    "kg_co2e_per_kwh": 0.3844,
    "available_years": [
        2000,
        2025
    ]
}
Intensidad de la red - anual — CÓDIGOS DE EJEMPLO

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' 


    
Solicitud
Intensidad de carbono en la red eléctrica en vivo para GB (NESO) autoridades de balance de EE.UU. (EIA) y zonas de licitación de la 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

Intensidad de la cuadrícula en vivo — Características del Endpoint

Objeto Descripción
zone Requerido GB, a US balancing authority (CISO, PJM, ERCO…), or an EU code (FR, DE, ES, PL, DK1, SE3…).

Pruebas gratuitas restantes: 3 de 3.


PARÁMETROS DE ENTRADA

zone
RESPUESTA DE EJEMPLO DE LA 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
        }
    ]
}
Intensidad de la cuadrícula en vivo — CÓDIGOS DE EJEMPLO

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' 


    
Solicitud
Pronóstico de intensidad de carbono de la red GB cada media hora (hasta 48h)
Endpoint ID: 27332
GET https://zylalabs.com/api/13267/carbon+footprint+and+emission+factor+api/27332/grid+forecast
PARÁMETROS DE ENTRADA

Pronóstico de red — Características del Endpoint

Objeto Descripción
zone Requerido Zone - GB only.
hours Opcional Forecast horizon, up to 48.

Pruebas gratuitas restantes: 3 de 3.


PARÁMETROS DE ENTRADA

zone
hours
RESPUESTA DE EJEMPLO DE LA 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"
        }
    ]
}
Pronóstico de red — CÓDIGOS DE EJEMPLO

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' 


    
Solicitud
La ventana más limpia próxima (GB) para ejecutar una carga, para el cambio de carga consciente del carbono, con % de ahorros frente al promedio del 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

Mejor momento para correr — Características del Endpoint

Objeto Descripción
duration Opcional Load length in hours
within Opcional Search horizon in hours (≤48).
zone Opcional Zone - GB only

Pruebas gratuitas restantes: 3 de 3.


PARÁMETROS DE ENTRADA

duration
within
zone
RESPUESTA DE EJEMPLO DE LA 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."
}
Mejor momento para correr — CÓDIGOS DE EJEMPLO

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' 


    
Solicitud
CO₂e ponderado por tiempo de uso para un perfil de uso horario de kWh utilizando el pronóstico de GB
Endpoint ID: 27334
GET https://zylalabs.com/api/13267/carbon+footprint+and+emission+factor+api/27334/time-weighted+footprint
PARÁMETROS DE ENTRADA

Huella ponderada por tiempo — Características del Endpoint

Objeto Descripción
zone Opcional Zone - GB Only.
profile Requerido Comma-separated hourly kWh, starting now.

Pruebas gratuitas restantes: 3 de 3.


PARÁMETROS DE ENTRADA

zone
profile
RESPUESTA DE EJEMPLO DE LA 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
        }
    ]
}
Huella ponderada por tiempo — CÓDIGOS DE EJEMPLO

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' 


    
Solicitud
Las categorías válidas unidades regiones años y regiones de cuadrícula llame a esto para descubrir entradas válidas antes de construir una solicitud
Endpoint ID: 27335
GET https://zylalabs.com/api/13267/carbon+footprint+and+emission+factor+api/27335/taxonomy
PARÁMETROS DE ENTRADA

Pruebas gratuitas restantes: 3 de 3.

Este endpoint no requiere parámetros de entrada.

RESPUESTA DE EJEMPLO DE LA 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"
}
Taxonomía — CÓDIGOS DE EJEMPLO

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


    
Solicitud
Devuelve un solo factor de emisión con plena procedencia y un nivel de calidad de datos
Endpoint ID: 27336
GET https://zylalabs.com/api/13267/carbon+footprint+and+emission+factor+api/27336/get+factor+by+id
PARÁMETROS DE ENTRADA

Obtener Factor por Id — Características del Endpoint

Objeto Descripción
id Requerido The factor id.

Pruebas gratuitas restantes: 3 de 3.


PARÁMETROS DE ENTRADA

id
RESPUESTA DE EJEMPLO DE LA 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"
    }
}
Obtener Factor por Id — CÓDIGOS DE EJEMPLO

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' 


    
Solicitud
Valores interanuales para un factor (UK DEFRA 2023–2025) con el cambio total
Endpoint ID: 27337
GET https://zylalabs.com/api/13267/carbon+footprint+and+emission+factor+api/27337/factor+history
PARÁMETROS DE ENTRADA

Historia del Factor — Características del Endpoint

Objeto Descripción
id Requerido The factor id.

Pruebas gratuitas restantes: 3 de 3.


PARÁMETROS DE ENTRADA

id
RESPUESTA DE EJEMPLO DE LA 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
    }
}
Historia del Factor — CÓDIGOS DE EJEMPLO

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' 


    

Clave de Acceso a la API y Autenticación

Después de registrarte, a cada desarrollador se le asigna una clave de acceso a la API personal, una combinación única de letras y dígitos proporcionada para acceder a nuestro endpoint de la API. Para autenticarte con el Huella de carbono y factor de emisión API simplemente incluye tu token de portador en el encabezado de Autorización.

Encabezados
Encabezado Descripción
Autorización Requerido Debería ser Bearer access_key. Consulta "Tu Clave de Acceso a la API" arriba cuando estés suscrito.

Sin compromiso a largo plazo. Mejora, reduce o cancela en cualquier momento. La Prueba Gratuita incluye hasta 50 solicitudes.

(Ahorra 2 meses pagando anualmente 🎉)

🚀 PLAN CORPORATIVO A MEDIDA

Comienza en
$ 10.000/Año


  • Volumen Personalizado
  • Límite de solicitudes personalizado
  • Soporte al Cliente Especializado
  • Monitoreo de API en Tiempo Real

Resumen

Convierte cualquier actividad gasto flete o vuelo en kg CO₂e a partir de datos abiertos y verificados (UK DEFRA US EPA Ember IPCC) además de la intensidad de carbono de la red en vivo para GB US y UE y 213 países

Huella de carbono y factor de emisión API FAQs

El endpoint de Estimación de CO2e devuelve datos sobre las emisiones de dióxido de carbono equivalente (CO₂e) basadas en actividades especificadas, incluyendo la cantidad, unidad, región, año y emisiones calculadas en kg y toneladas. También proporciona factores de emisión con información detallada sobre la procedencia y la calidad de los datos

Los campos clave en la respuesta incluyen "actividad" "cantidad" "unidad" "región" "año" "co2e_kg" "co2e_toneladas" y "factor" El objeto "factor" contiene detalles como "id" "co2e_kg_por_unidad" "fuente" y "calidad_de_datos"

Los usuarios pueden especificar parámetros como "actividad" "cantidad" "unidad" "región" y "año" para personalizar sus solicitudes Los valores aceptados dependen del tipo de actividad y de la región seleccionada

Los datos de respuesta están estructurados en formato JSON con los datos de emisión principales en el nivel superior y un objeto "factor" anidado que contiene información detallada sobre el factor de emisión incluyendo métricas de fuente y calidad

Los datos provienen de organizaciones respetables como el DEFRA del Reino Unido la EPA de EE. UU. Ember y el IPCC. Cada factor de emisión incluye su fuente año y licencia garantizando transparencia y confiabilidad

La precisión de los datos se mantiene a través de un abastecimiento riguroso de organismos autoritativos y un sistema de niveles de calidad de datos transparente Cada factor se evalúa por su fiabilidad en función de la autoridad la especificidad y la antigüedad

Los casos de uso típicos incluyen la contabilidad de carbono para empresas, informes de sostenibilidad y evaluaciones de impacto ambiental. Los usuarios pueden estimar las emisiones de diversas actividades como el transporte, el uso de energía y el consumo de materiales

Los usuarios pueden aprovechar los datos devueltos para calcular su huella de carbono comparar las emisiones entre diferentes actividades y tomar decisiones informadas para reducir su impacto ambiental basándose en factores de emisión precisos

General FAQs

Zyla API Hub es como una gran tienda de APIs, donde puedes encontrar miles de ellas en un solo lugar. También ofrecemos soporte dedicado y monitoreo en tiempo real de todas las APIs. Una vez que te registres, puedes elegir qué APIs quieres usar. Solo recuerda que cada API necesita su propia suscripción. Pero si te suscribes a varias, usarás la misma clave para todas, lo que hace todo más fácil para ti.
Los precios se muestran en USD (dólar estadounidense), EUR (euro), CAD (dólar canadiense), AUD (dólar australiano) y GBP (libra esterlina). Aceptamos todas las principales tarjetas de débito y crédito. Nuestro sistema de pago utiliza la última tecnología de seguridad y está respaldado por Stripe, una de las compañías de pago más confiables del mundo. Si tienes algún problema para pagar con tarjeta, contáctanos en [email protected]

Además, si ya tienes una suscripción activa en cualquiera de estas monedas (USD, EUR, CAD, AUD, GBP), esa moneda se mantendrá para suscripciones posteriores. Puedes cambiar la moneda en cualquier momento siempre que no tengas suscripciones activas.
La moneda local que aparece en la página de precios se basa en el país de tu dirección IP y se proporciona solo como referencia. Los precios reales están en USD (dólar estadounidense). Cuando realices un pago, el cargo aparecerá en tu estado de cuenta en USD, incluso si ves el monto equivalente en tu moneda local en nuestro sitio web. Esto significa que no puedes pagar directamente en tu moneda local.
Ocasionalmente, un banco puede rechazar el cargo debido a sus configuraciones de protección contra fraude. Te sugerimos comunicarte con tu banco primero para verificar si están bloqueando nuestros cargos. También puedes acceder al Portal de Facturación y cambiar la tarjeta asociada para realizar el pago. Si esto no funciona y necesitas más ayuda, por favor contacta a nuestro equipo en [email protected]
Los precios se determinan mediante una suscripción recurrente mensual o anual, dependiendo del plan elegido.
Las llamadas a la API se descuentan de tu plan en base a solicitudes exitosas. Cada plan incluye una cantidad específica de llamadas que puedes realizar por mes. Solo las llamadas exitosas, indicadas por una respuesta con estado 200, se contarán en tu total. Esto asegura que las solicitudes fallidas o incompletas no afecten tu cuota mensual.
Zyla API Hub funciona con un sistema de suscripción mensual recurrente. Tu ciclo de facturación comenzará el día en que compres uno de los planes de pago, y se renovará el mismo día del mes siguiente. Así que recuerda cancelar tu suscripción antes si quieres evitar futuros cargos.
Para actualizar tu plan de suscripción actual, simplemente ve a la página de precios de la API y selecciona el plan al que deseas actualizarte. La actualización será instantánea, permitiéndote disfrutar inmediatamente de las funciones del nuevo plan. Ten en cuenta que las llamadas restantes de tu plan anterior no se transferirán al nuevo plan, por lo que debes considerar esto al actualizar. Se te cobrará el monto total del nuevo plan.
Para verificar cuántas llamadas a la API te quedan en el mes actual, revisa el campo 'X-Zyla-API-Calls-Monthly-Remaining' en el encabezado de la respuesta. Por ejemplo, si tu plan permite 1,000 solicitudes por mes y has usado 100, este campo mostrará 900 llamadas restantes.
Para ver el número máximo de solicitudes a la API que permite tu plan, revisa el encabezado de la respuesta 'X-Zyla-RateLimit-Limit'. Por ejemplo, si tu plan incluye 1,000 solicitudes por mes, este encabezado mostrará 1,000.
El encabezado 'X-Zyla-RateLimit-Reset' muestra el número de segundos hasta que tu límite se restablezca. Esto te indica cuándo tu conteo de solicitudes se reiniciará. Por ejemplo, si muestra 3,600, significa que faltan 3,600 segundos para que el límite se restablezca.
Sí, puedes cancelar tu plan en cualquier momento desde tu cuenta, seleccionando la opción de cancelación en la página de Facturación. Ten en cuenta que las actualizaciones, degradaciones y cancelaciones tienen efecto inmediato. Además, al cancelar ya no tendrás acceso al servicio, incluso si te quedaban llamadas en tu cuota.
Para darte la oportunidad de probar nuestras APIs sin compromiso, ofrecemos una prueba gratuita de 7 días que te permite realizar hasta 50 llamadas a la API sin costo. Esta prueba solo se puede usar una vez, por lo que recomendamos aplicarla a la API que más te interese. Aunque la mayoría de nuestras APIs ofrecen prueba gratuita, algunas pueden no hacerlo. La prueba finaliza después de 7 días o cuando realices 50 solicitudes, lo que ocurra primero. Si alcanzas el límite de 50 solicitudes durante la prueba, deberás "Iniciar tu Plan de Pago" para continuar haciendo solicitudes. Puedes encontrar el botón "Iniciar tu Plan de Pago" en tu perfil bajo Suscripción -> Elige la API a la que estás suscrito -> Pestaña de Precios. Alternativamente, si no cancelas tu suscripción antes del día 7, tu prueba gratuita finalizará y tu plan se cobrará automáticamente, otorgándote acceso a todas las llamadas a la API especificadas en tu plan. Ten esto en cuenta para evitar cargos no deseados.
Después de 7 días, se te cobrará el monto total del plan al que estabas suscrito durante la prueba. Por lo tanto, es importante cancelar antes de que finalice el periodo de prueba. No se aceptan solicitudes de reembolso por olvidar cancelar a tiempo.
Cuando te suscribes a una prueba gratuita de una API, puedes realizar hasta 50 llamadas. Si deseas realizar más llamadas después de este límite, la API te pedirá que "Inicies tu Plan de Pago". Puedes encontrar el botón "Iniciar tu Plan de Pago" en tu perfil bajo Suscripción -> Elige la API a la que estás suscrito -> Pestaña de Precios.
Las Órdenes de Pago se procesan entre el día 20 y el 30 de cada mes. Si envías tu solicitud antes del día 20, tu pago será procesado dentro de ese período.
Puedes contactarnos a través de nuestro canal de chat para recibir asistencia inmediata. Siempre estamos en línea de 8 a. m. a 5 p. m. (EST). Si nos contactas fuera de ese horario, te responderemos lo antes posible. Además, puedes escribirnos por correo electrónico a [email protected]

APIs Relacionadas


También te puede interesar