List Prices

Returns a list of your active prices, excluding inline prices.

Responses
  • application/json
  • application/json
  • application/json
  • application/json
  • application/json
Request Example for get/v1/prices
curl https://api.paypercut.io/v1/prices \
  --header 'Authorization: Bearer YOUR_SECRET_TOKEN'
{
  "items": [
    {
      "active": true,
      "billing_scheme": "per_unit",
      "created": 1,
      "currency": "string",
      "livemode": true,
      "lookup_key": null,
      "product": "01K755J9SV2364REVHB915Z2FW",
      "product_data": {
        "active": true,
        "name": "string",
        "description": "string",
        "unit_label": "string",
        "id": "string"
      },
      "recurring": {
        "interval": "day",
        "interval_count": 1,
        "meter": null,
        "usage_type": "licensed"
      },
      "type": "one_time",
      "unit_amount": null,
      "unit_amount_decimal": null,
      "id": "string"
    }
  ],
  "last_key": "string"
}