BillKit/Docs Console
Prices

List prices

List your prices, newest first.

GET/v1/prices
Operation list_prices · Scope prices:read · Spec snapshot 2026-09-13

Parameters

ParameterDescription
product_idstring | null · queryoptionalAt most 64 characters.
limitinteger · queryoptionalDefaults to 10. Between 1 and 100.
starting_afterstring | null · queryoptionalAt most 128 characters.

Cursor-paginated. limit caps a page and starting_after takes the last id you saw.

Returns

Returns a page of PriceResponse objects. data holds the page and has_more says whether another one exists. Page forward by passing the last id of the page as starting_after; a short page is not the end of the list.

Errors

Status Cause
401 Missing or invalid API key.
403 Key is missing the prices:read scope.
422 Validation Error
429 Rate limited. Back off and retry.
Request · curl
curl -X GET https://api.billkit.eu/v1/prices \
  -H "Authorization: Bearer $BILLKIT_SECRET_KEY"
Response · 200 OK
{
  "data": [
    {
      "active": false,
      "amount_cents": 1900,
      "billing_scheme": "string",
      "created": 1789392000,
      "currency": "EUR",
      "id": "price_9XKp2vQ1",
      "interval": "string",
      "livemode": false,
      "metadata": {
        "key": "value"
      },
      "object": "price",
      "payment_methods": [
        "string"
      ],
      "product_id": "prod_9XKp2vQ1",
      "product_name": "Ada Lovelace",
      "refund_on_cancel": "none",
      "refund_window_initial_days": 0,
      "refund_window_renewal_days": 0,
      "tax_behavior": "string",
      "tiers": [
        {
          "flat_amount": null,
          "unit_amount_decimal": null,
          "up_to": null
        }
      ],
      "tiers_mode": "string",
      "trial_days": 0,
      "trial_verification_cents": 1900,
      "unit_amount_decimal": "string",
      "usage_type": "string"
    }
  ],
  "has_more": false,
  "object": "list"
}