> ## Documentation Index
> Fetch the complete documentation index at: https://docs.vouchersx.com/llms.txt
> Use this file to discover all available pages before exploring further.

# List the user's wallet claims

> All vouchers the user has claimed, newest first. Each row joins the current voucher state, so `voucherIsActive=false` means the merchant has since unpublished it — the claim still exists but can no longer be redeemed.



## OpenAPI

````yaml /openapi.json get /me/claims
openapi: 3.1.0
info:
  title: Voucher Platform — Partner Integration API
  version: 1.0.0
  description: >-
    Server-to-server and consumer endpoints used by partner apps to provision
    users, embed the voucher webview, and receive lifecycle webhooks. See the
    [partner integration guide](/docs) for the full narrative including JWT
    setup, HMAC signing, and a worked end-to-end example.
servers:
  - url: http://localhost:4000
    description: Local development
security: []
tags:
  - name: Integrations
    description: >-
      Server-to-server endpoints called from the partner backend. Authenticated
      with an HMAC signature.
  - name: Consumer
    description: >-
      Called from inside the partner-issued webview (or partner-native UI) on
      behalf of an end user. Authenticated with a partner-signed JWT.
paths:
  /me/claims:
    get:
      tags:
        - Consumer
      summary: List the user's wallet claims
      description: >-
        All vouchers the user has claimed, newest first. Each row joins the
        current voucher state, so `voucherIsActive=false` means the merchant has
        since unpublished it — the claim still exists but can no longer be
        redeemed.
      responses:
        '200':
          description: Default Response
          content:
            application/json:
              schema:
                type: array
                items:
                  type: object
                  additionalProperties: true
                  properties:
                    id:
                      type: string
                      format: uuid
                    voucherId:
                      type: string
                      format: uuid
                    claimedAt:
                      type: string
                      format: date-time
                    voucherTitle:
                      type: string
                    voucherIsActive:
                      type: boolean
                    merchantId:
                      type: string
                      format: uuid
      security:
        - BearerJwt: []
components:
  securitySchemes:
    BearerJwt:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: >-
        Bearer JWT signed by your app, with `iss` matching the issuer registered
        on the partner record. Verified against your JWKS URL or static public
        key.

````