BillKit/Docs Console
Coupons

Get coupon

Retrieve one coupon, including how many times it has been redeemed.

GET/v1/coupons/{coupon_id}
Operation get_coupon · Scope coupons:read · Spec snapshot 2026-09-13

Parameters

ParameterDescription
coupon_idstring · pathrequiredNo description in the spec.

Returns

Returns a CouponResponse object.

Errors

Status Cause
401 Missing or invalid API key.
403 Key is missing the coupons:read scope.
404 No such object, or it belongs to the other mode.
422 Validation Error
429 Rate limited. Back off and retry.
Request · curl
curl -X GET https://api.billkit.eu/v1/coupons/coup_9XKp2vQ1 \
  -H "Authorization: Bearer $BILLKIT_SECRET_KEY"
Response · 200 OK
{
  "active": false,
  "applies_to_price_ids": [
    "string"
  ],
  "code": "string",
  "created": 1789392000,
  "discount_type": "string",
  "discount_value": 0,
  "duration": "string",
  "duration_in_months": 0,
  "id": "coup_9XKp2vQ1",
  "livemode": false,
  "max_redemptions": 0,
  "min_amount_cents": 1900,
  "object": "coupon",
  "redeem_by": 0,
  "redemptions_count": 0
}