# The Climate product object

### The Climate product object

```json
{
  "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"
    }
  ]
}
```

## Attributes

- `id` (string)
  Unique identifier for the object. For convenience, Climate product IDs are human-readable strings that start with `climsku_`. See [carbon removal inventory](https://docs.stripe.com/climate/orders/carbon-removal-inventory.md) for a list of available carbon removal products.

- `object` (string)
  String representing the object’s type. Objects of the same type share the same value.

- `created` (timestamp)
  Time at which the object was created. Measured in seconds since the Unix epoch.

- [`current_prices_per_metric_ton`](https://docs.stripe.com/api/climate/product/object.md?query=current_prices_per_metric_ton) (map)
  Current prices for a metric ton of carbon removal in a currency’s smallest unit.

- `delivery_year` (integer, nullable)
  The year in which the carbon removal is expected to be delivered. If the year is in the past, this represents spot inventory with guaranteed delivery.

- `livemode` (boolean)
  Has the value `true` if the object exists in live mode or the value `false` if the object exists in test mode.

- `metric_tons_available` (decimal string)
  The quantity of metric tons available for reservation.

- `name` (string)
  The Climate product’s name.

- [`suppliers`](https://docs.stripe.com/api/climate/product/object.md?query=suppliers) (array of objects)
  The carbon removal suppliers that fulfill orders for this Climate product.
