---
title: "Queries vouchers with filtering, sorting, and pagination."
method: GET
path: "/vouchers"
tags: ["BillingAccount"]
---

# Queries vouchers with filtering, sorting, and pagination.

`GET /vouchers`

## Query parameters

- `page` integer
- `page_size` integer
- `sort` string[]
- `organization_id` object
  - `eq` string
  - `neq` string
  - `gt` string
  - `gte` string
  - `lt` string
  - `lte` string
  - `contains` string
  - `starts_with` string
  - `ends_with` string
  - `in` string[]
  - `not_contains` string
- `status` object
  - `eq` string
  - `neq` string
  - `gt` string
  - `gte` string
  - `lt` string
  - `lte` string
  - `contains` string
  - `starts_with` string
  - `ends_with` string
  - `in` string[]
  - `not_contains` string
- `source` object
  - `eq` string
  - `neq` string
  - `gt` string
  - `gte` string
  - `lt` string
  - `lte` string
  - `contains` string
  - `starts_with` string
  - `ends_with` string
  - `in` string[]
  - `not_contains` string
- `expires_at` object
  - `eq` string
  - `neq` string
  - `gt` string
  - `gte` string
  - `lt` string
  - `lte` string
  - `contains` string
  - `starts_with` string
  - `ends_with` string
  - `in` string[]
  - `not_contains` string
- `issued_at` object
  - `eq` string
  - `neq` string
  - `gt` string
  - `gte` string
  - `lt` string
  - `lte` string
  - `contains` string
  - `starts_with` string
  - `ends_with` string
  - `in` string[]
  - `not_contains` string
- `logic` 'and' | 'or'

## Response `200`

OK

- QueryVouchersEndpointPagedResultOfOutput
  - `total` integer, required
  - `page` integer, required
  - `pageSize` integer, required
  - `items` QueryVouchersEndpointOutput[], required
    - `id` string, required — The voucher id.
    - `amount` number, double, required — The face value of the voucher in dollars.
    - `used` number, double, required — The amount already consumed across closed billing periods.
    - `remaining` number, double, required — The remaining free usage the voucher can still grant.
    - `issuedAt` string, date-time, required — When the voucher was issued.
    - `expiresAt` string, date-time, required — When the voucher expires.
    - `status` 'Active' | 'Exhausted' | 'Expired' | 'Revoked', required
    - `source` 'Signup' | 'ManualGrant' | 'TopUp' | 'WriteOff', required
  - `totalPages` integer

## Other responses

- `400` — Bad Request
- `401` — Unauthenticated
- `403` — Forbidden

## Changes

> 5 revisions in range; 1 could not be searched.

- **2026-08-21** `5f993bd211f5` — 1 warning
  - added the new `WriteOff` enum value to the `items/items/source/allOf[#/components/schemas/VoucherSource]/` response property for the response status `200`

[Change history](https://skmtc.dev/rapidata/apis/rapidata-api/changes/vouchers/get.md)

---

[API](https://skmtc.dev/rapidata/apis/rapidata-api.md) · [All operations](https://skmtc.dev/rapidata/apis/rapidata-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/rapidata/rapidata-api/revisions/4ee3e6f5e4f4/schema)
