Skip to main content
GET
/
v2
/
loyalties
/
rewards
List rewards v2
curl --request GET \
  --url https://api.voucherify.io/v2/loyalties/rewards \
  --header 'Authorization: Bearer <token>' \
  --header 'X-App-Id: <api-key>' \
  --header 'X-App-Token: <api-key>'
{
  "data": [
    {
      "id": "<string>",
      "name": "<string>",
      "metadata": {},
      "created_at": "2023-11-07T05:31:56Z",
      "updated_at": "2023-11-07T05:31:56Z",
      "object": "<string>",
      "material": {
        "product": {
          "id": "<string>"
        },
        "sku": {
          "product_id": "<string>",
          "id": "<string>"
        }
      },
      "digital": {
        "discount_coupons": {
          "campaign_id": "<string>"
        },
        "gift_vouchers": {
          "campaign_id": "<string>",
          "balance": 1
        }
      }
    }
  ],
  "cursor": {
    "next": "<string>",
    "expires_at": "2023-11-07T05:31:56Z"
  },
  "object": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

X-App-Id
string
header
required
X-App-Token
string
header
required

Query Parameters

limit
integer
default:10

Maximum number of results to return (1–100, default 10).

Required range: 1 <= x <= 100
order

Sort order. Prefix with - for descending. Supports multiple values.

Available options:
-created_at,
created_at,
name,
-name
cursor
string

Pagination cursor returned from a previous response.

Response

Paginated list of rewards.

data
object[]
required
cursor
object
required

Null when there are no more pages.

object
string
required
Allowed value: "list"
Last modified on June 9, 2026