---
title: "List coupons with cursor-based pagination"
method: GET
path: "/coupons"
tags: ["Coupons"]
---

# List coupons with cursor-based pagination

`GET /coupons`

Returns coupon data with cursor-based pagination and optional full-text search via the `query` parameter.

## Query parameters

- `teamId` string, required — Unique identifier of the team whose coupons to retrieve
- `active` boolean — Optional filter to retrieve only active or inactive coupons
- `query` string — Optional search query to filter coupons by name or description. When provided, search-backed pagination is used.
- `limit` integer — Maximum number of coupons to return per request (1-100, default: 20)
- `cursor` string — Pagination cursor returned by a previous request. Omit on the first request.

## Response `200`

OK

- object
  - `coupons` Coupon[], required — Array of coupons for the current result set
    - `id` string, required — A unique identifier for this coupon.
    - `couponId` string — Duplicate of id field for GSI queries.
    - `createdAt` string, date-time, required — Timestamp in ISO 8601 format when this coupon was created.
    - `updatedAt` string, date-time, required — Timestamp in ISO 8601 format when this coupon was last updated.
    - `name` string, required — Internal label for the coupon, visible to event organisers.
    - `active` boolean — Whether this coupon is currently active.
    - `showHidden` boolean — Whether this coupon reveals hidden admissions and sections within its scope.
    - `kind` 'AMOUNT' | 'PERCENT', required — Type of discount this coupon gives: a fixed amount or a percentage.
    - `filter` 'TEAM' | 'PROMOTER' | 'EVENTS' | 'SECTIONS' | 'ADMISSIONS', required — Scope of the coupon. TEAM applies to all events in the team. PROMOTER applies to all events by specified promoters. EVENTS/SECTIONS/ADMISSIONS apply to specific items.
    - `currency` 'AED' | 'ALL' | 'AMD' | 'ANG' | 'AOA' | 'ARS' | 'AUD' | 'AWG' | 'AZN' | 'BAM' | 'BBD' | 'BDT' | 'BGN' | 'BHD' | 'BIF' | 'BMD' | 'BND' | 'BOB' | 'BRL' | 'BSD' | 'BTN' | 'BWP' | 'BZD' | 'CAD' | 'CHF' | 'CLP' | 'CNY' | 'COP' | 'CRC' | 'CVE' | 'CZK' | 'DJF' | 'DKK' | 'DOP' | 'DZD' | 'EGP' | 'ERN' | 'ETB' | 'EUR' | 'FJD' | 'FKP' | 'GBP' | 'GEL' | 'GHS' | 'GIP' | 'GMD' | 'GNF' | 'GTQ' | 'GYD' | 'HKD' | 'HNL' | 'HUF' | 'IDR' | 'ILS' | 'INR' | 'ISK' | 'JMD' | 'JOD' | 'JPY' | 'KES' | 'KGS' | 'KHR' | 'KMF' | 'KRW' | 'KWD' | 'KYD' | 'KZT' | 'LAK' | 'LBP' | 'LKR' | 'LRD' | 'LSL' | 'LYD' | 'MAD' | 'MDL' | 'MGA' | 'MKD' | 'MNT' | 'MOP' | 'MUR' | 'MVR' | 'MWK' | 'MXN' | 'MYR' | 'NAD' | 'NGN' | 'NIO' | 'NOK' | 'NPR' | 'NZD' | 'OMR' | 'PAB' | 'PEN' | 'PGK' | 'PHP' | 'PKR' | 'PLN' | 'PYG' | 'QAR' | 'RON' | 'RSD' | 'RWF' | 'SAR' | 'SBD' | 'SCR' | 'SEK' | 'SGD' | 'SHP' | 'SLE' | 'SRD' | 'SVC' | 'SZL' | 'THB' | 'TJS' | 'TMT' | 'TND' | 'TOP' | 'TRY' | 'TTD' | 'TWD' | 'TZS' | 'UAH' | 'UGX' | 'USD' | 'UYU' | 'UZS' | 'VND' | 'VUV' | 'WST' | 'XAF' | 'XCD' | 'XOF' | 'XPF' | 'ZAR' | 'ZMW' | 'ZWL' — Three-letter ISO 4217 currency code. Required for AMOUNT coupons. Optional for PERCENT coupons - when omitted, applies to all currencies.
    - `discount` number, required — The discount value. If kind is 'amount', this is a currency amount. If kind is 'percent', this is a percentage.
    - `limit` number, required — Maximum number of times the coupon can be redeemed across all customers.
    - `uses` number — Number of times this coupon has been redeemed so far.
    - `promoters` object[] — List of promoters this coupon applies to when filter is PROMOTER.
      - `id` string, required — Identifier of a promoter this coupon applies to.
      - `name` string, required — Name of a promoter this coupon applies to.
      - `slug` string, required — URL slug of a promoter this coupon applies to.
    - `events` object[] — List of events this coupon applies to when filter is EVENTS.
      - `id` string, required — Identifier of an event this coupon applies to.
      - `name` string, required — Name of an event this coupon applies to.
      - `slug` string, required — URL slug of an event this coupon applies to.
    - `sections` object[] — List of sections this coupon applies to when filter is 'sections'.
      - `id` string, required — Identifier of a section this coupon applies to.
      - `name` string, required — Name of a section this coupon applies to.
      - `eventId` string, required — Identifier of the event this section belongs to.
    - `admissions` object[] — List of admissions this coupon applies to when filter is 'admissions'.
      - `id` string, required — Identifier of an admission this coupon applies to.
      - `name` string, required — Name of an admission this coupon applies to.
      - `eventId` string, required — Identifier of the event this admission belongs to.
    - `saleStartsAt` string, required — Wall clock time when this coupon becomes valid (no timezone, ISO 8601 format: YYYY-MM-DDTHH:mm:ss)
    - `saleEndsAt` string — Wall clock time when this coupon expires (no timezone, ISO 8601 format: YYYY-MM-DDTHH:mm:ss)
    - `teamId` string, required — Team that created this coupon.
  - `before` string, nullable — Cursor for navigating backward in the result set. Omitted when there are no prior results.
  - `after` string, nullable — Cursor for navigating forward in the result set. Omitted when there are no subsequent results.
  - `limit` number, required — Maximum number of items to return in each result set

## Other responses

- `400` — 400
- `401` — 401
- `403` — 403
- `404` — 404
- `409` — 409
- `412` — 412
- `422` — 422
- `429` — 429
- `500` — 500
- `501` — 501
- `503` — 503

---

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