---
title: "Create a shipping rate"
method: POST
path: "/v1/shipping_rates"
---

# Create a shipping rate

`POST /v1/shipping_rates`

Creates a new shipping rate object.

## Response `200`

Successful response.

- ShippingRate — Shipping rates describe the price of shipping presented to your customers and applied to a purchase. For more information, see [Charge for shipping](https://docs.stripe.com/payments/during-payment/charge-shipping).
  - `active` boolean, required — Whether the shipping rate can be used for new purchases. Defaults to `true`.
  - `created` integer, required — Time at which the object was created. Measured in seconds since the Unix epoch.
  - `delivery_estimate` ShippingRateDeliveryEstimate
    - `maximum` ShippingRateDeliveryEstimateBound
      - `unit` 'business_day' | 'day' | 'hour' | 'month' | 'week', required — A unit of time.
      - `value` integer, required — Must be greater than 0.
    - `minimum` ShippingRateDeliveryEstimateBound
      - `unit` 'business_day' | 'day' | 'hour' | 'month' | 'week', required — A unit of time.
      - `value` integer, required — Must be greater than 0.
  - `display_name` string, nullable — The name of the shipping rate, meant to be displayable to the customer. This will appear on CheckoutSessions.
  - `fixed_amount` ShippingRateFixedAmount
    - `amount` integer, required — A non-negative integer in cents representing how much to charge.
    - `currency` string, currency, required — Three-letter [ISO currency code](https://www.iso.org/iso-4217-currency-codes.html), in lowercase. Must be a [supported currency](https://stripe.com/docs/currencies).
    - `currency_options` object — Shipping rates defined in each available currency option. Each key must be a three-letter [ISO currency code](https://www.iso.org/iso-4217-currency-codes.html) and a [supported currency](https://stripe.com/docs/currencies).
  - `id` string, required — Unique identifier for the object.
  - `livemode` boolean, required — If the object exists in live mode, the value is `true`. If the object exists in test mode, the value is `false`.
  - `metadata` object, required — Set of [key-value pairs](https://docs.stripe.com/api/metadata) that you can attach to an object. This can be useful for storing additional information about the object in a structured format.
  - `object` 'shipping_rate', required — String representing the object's type. Objects of the same type share the same value.
  - `tax_behavior` 'exclusive' | 'inclusive' | 'unspecified', nullable — Specifies whether the rate is considered inclusive of taxes or exclusive of taxes. One of `inclusive`, `exclusive`, or `unspecified`.
  - `tax_code` union — A [tax code](https://docs.stripe.com/tax/tax-categories) ID. The Shipping tax code is `txcd_92010001`.
    - string
    - TaxCode — [Tax codes](https://stripe.com/docs/tax/tax-categories) classify goods and services for tax purposes.
      - `description` string, required — A detailed description of which types of products the tax code represents.
      - `id` string, required — Unique identifier for the object.
      - `name` string, required — A short name for the tax code.
      - `object` 'tax_code', required — String representing the object's type. Objects of the same type share the same value.
  - `type` 'fixed_amount', required — The type of calculation to use on the shipping rate.

## Other responses

- `default` — Error response.

---

[API](https://skmtc.net/stripe/apis/stripe-api-2.md) · [All operations](https://skmtc.net/stripe/apis/stripe-api-2/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/stripe/stripe-api-2/versions/3653ad45bbec/schema)
