---
title: "Create Price"
method: POST
path: "/prices"
tags: ["Prices"]
---

# Create Price

`POST /prices`

Create a new price

## Request body

- PriceInput
  - `amount` integer, nullable — The price amount in the smallest currency unit (e.g. cents).
  - `cadence` 'year' | 'month' | 'one-time' | 'email' | 'week', required — The billing cadence for this price.
  - `currency` string, required — The three-letter ISO currency code (e.g. 'usd').
  - `description` string, nullable — An optional human-readable description of the price.
  - `maximum_amount` integer, nullable — The maximum amount for pay-what-you-want prices.
  - `minimum_amount` integer, nullable — The minimum amount for pay-what-you-want prices.
  - `product_id` string, nullable — The ID of the Stripe product this price belongs to.
  - `style` 'pay-what-you-want' | 'fixed' | 'usage-based', required — The pricing style: 'fixed', 'pay-what-you-want', or 'usage-based'.
  - `suggested_amount` integer, nullable — The suggested amount for pay-what-you-want prices.

## Response `201`

Created

- Price
  - `amount` integer, nullable — The price amount in the smallest currency unit (e.g. cents).
  - `cadence` 'year' | 'month' | 'one-time' | 'email' | 'week', required — The billing cadence for this price.
  - `currency` string, required — The three-letter ISO currency code (e.g. 'usd').
  - `description` string, nullable — An optional human-readable description of the price.
  - `maximum_amount` integer, nullable — The maximum amount for pay-what-you-want prices.
  - `minimum_amount` integer, nullable — The minimum amount for pay-what-you-want prices.
  - `product_id` string, nullable — The ID of the Stripe product this price belongs to.
  - `style` 'pay-what-you-want' | 'fixed' | 'usage-based', required — The pricing style: 'fixed', 'pay-what-you-want', or 'usage-based'.
  - `suggested_amount` integer, nullable — The suggested amount for pay-what-you-want prices.
  - `id` string, required — The unique identifier of the price.
  - `product` Product
    - `id` string, required — The unique identifier of the product.
    - `product_id` string, required — The Stripe product ID.
    - `name` string, required — The name of the product.
    - `creation_date` string, required — The date the product was created in Stripe.
    - `active` boolean, required — Whether the product is currently active.
    - `default_price` string, nullable — The ID of the default price for this product.

## Other responses

- `400` — Bad Request
- `401` — Unauthorized
- `403` — Forbidden
- `409` — Conflict
- `429` — Too Many Requests

---

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