---
title: "List Prices"
method: GET
path: "/prices"
tags: ["Prices"]
---

# List Prices

`GET /prices`

List all prices

## Query parameters

- `expand` string[] — If provided, expand the given field.
- `page` integer — The page number of the paginated response.

## Response `200`

OK

- PricePage
  - `results` Price[], required — The list of results for this page.
    - `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.
  - `next` string, nullable — The URL to the next page of results, if any.
  - `previous` string, nullable — The URL to the previous page of results, if any.
  - `count` integer, required — The total number of results across all pages.

## 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)
