A Climate product represents a type of carbon removal unit available for reservation. You can retrieve it to see the current price and availability.
Attributes
- idstring
Unique identifier for the object. For convenience, Climate product IDs are human-readable strings that start with
climsku_
. See carbon removal inventory for a list of available carbon removal products. - objectstring
String representing the object’s type. Objects of the same type share the same value.
- createdtimestamp
Time at which the object was created. Measured in seconds since the Unix epoch.
- current_
prices_ per_ metric_ tonobject Current prices for a metric ton of carbon removal in a currency’s smallest unit.
- delivery_
yearnullable integer The year in which the carbon removal is expected to be delivered.
- livemodeboolean
Has the value
true
if the object exists in live mode or the valuefalse
if the object exists in test mode. - metric_
tons_ availabledecimal string The quantity of metric tons available for reservation.
- namestring
The Climate product’s name.
- suppliersarray of objects
The carbon removal suppliers that fulfill orders for this Climate product.
{ "id": "climsku_frontier_offtake_portfolio_2027", "object": "climate.product", "created": 1881439203, "current_prices_per_metric_ton": { "usd": { "amount_fees": 1650, "amount_subtotal": 55000, "amount_total": 56650 } }, "delivery_year": 2027, "livemode": false, "metric_tons_available": "18000", "name": "Frontier's 2027 offtake portfolio", "suppliers": [ { "id": "climsup_charm_industrial", "object": "climate.supplier", "info_url": "https://frontierclimate.com/portfolio/charm-industrial", "livemode": false, "locations": [ { "city": "San Francisco", "country": "US", "latitude": 37.7749, "longitude": -122.4194, "region": "CA" } ], "name": "Charm Industrial", "removal_pathway": "biomass_carbon_removal_and_storage" } ]}
Retrieves the details of a Climate product with the given ID.
Parameters
No parameters.
Returns
Returns a Climate product object if a valid identifier was provided. Throws an error otherwise.
{ "id": "climsku_frontier_offtake_portfolio_2027", "object": "climate.product", "created": 1881439203, "current_prices_per_metric_ton": { "usd": { "amount_fees": 1650, "amount_subtotal": 55000, "amount_total": 56650 } }, "delivery_year": 2027, "livemode": false, "metric_tons_available": "18000", "name": "Frontier's 2027 offtake portfolio", "suppliers": [ { "id": "climsup_charm_industrial", "object": "climate.supplier", "info_url": "https://frontierclimate.com/portfolio/charm-industrial", "livemode": false, "locations": [ { "city": "San Francisco", "country": "US", "latitude": 37.7749, "longitude": -122.4194, "region": "CA" } ], "name": "Charm Industrial", "removal_pathway": "biomass_carbon_removal_and_storage" } ]}
Lists all available Climate product objects.
Parameters
No parameters.
More parameters
- ending_
beforestring - limitinteger
- starting_
afterstring
Returns
A dictionary with a data
property that contains an array of up to limit
products, starting after product starting_
. Each entry in the array is a separate product object. If no more products are available, the resulting array is empty.
{ "object": "list", "url": "/v1/climate/products", "has_more": false, "data": [ { "id": "climsku_frontier_offtake_portfolio_2027", "object": "climate.product", "created": 1881439203, "current_prices_per_metric_ton": { "usd": { "amount_fees": 1650, "amount_subtotal": 55000, "amount_total": 56650 } }, "delivery_year": 2027, "livemode": false, "metric_tons_available": "18000", "name": "Frontier's 2027 offtake portfolio", "suppliers": [ { "id": "climsup_charm_industrial", "object": "climate.supplier", "info_url": "https://frontierclimate.com/portfolio/charm-industrial", "livemode": false, "locations": [ { "city": "San Francisco", "country": "US", "latitude": 37.7749, "longitude": -122.4194, "region": "CA" } ], "name": "Charm Industrial", "removal_pathway": "biomass_carbon_removal_and_storage" } ] } ]}
A supplier of carbon removal.