> ## 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 favorited merchants

> Joins each favorite with the current merchant metadata. Newest favorites first.



## OpenAPI

````yaml /openapi.json get /me/favorites
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/favorites:
    get:
      tags:
        - Consumer
      summary: List the user's favorited merchants
      description: >-
        Joins each favorite with the current merchant metadata. Newest favorites
        first.
      responses:
        '200':
          description: Default Response
          content:
            application/json:
              schema:
                type: array
                items:
                  type: object
                  additionalProperties: true
                  properties:
                    merchantId:
                      type: string
                      format: uuid
                    favoritedAt:
                      type: string
                      format: date-time
                    name:
                      type: string
                    slug:
                      type: string
                    category:
                      type: string
                      enum:
                        - F_AND_B
                        - BEAUTY
                        - SERVICE
                        - ACTIVITY
                        - RETAIL
                    logoPath:
                      type:
                        - 'null'
                        - string
      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.

````