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

# Gift Card Template List

> Get the list of available gift card cover templates.

## Overview

This page documents the `GET /payment/open/institution/v1/pay/gift/temp/list` endpoint. The full schema, parameters, and examples are rendered from the linked OpenAPI definition above.

## Notes

* Authentication uses the standard GatePay signed headers.
* This page documents the standard merchant endpoint.
* For shared signing rules, see [/api-reference/version/100/en/common/securityAndSignature](/api-reference/version/100/en/common/securityAndSignature).


## OpenAPI

````yaml /api-reference/version/100/en/openapi/institution/gift-card-openapi.json GET /payment/open/institution/v1/pay/gift/temp/list
openapi: 3.1.0
info:
  title: GatePay API
  description: >-
    The gift card API solution provided by Gate Pay is designed to facilitate
    the instant creation and value checking of gift cards.
  license:
    name: MIT
  version: 1.0.0
servers:
  - url: https://openplatform.gateapi.io
security: []
paths:
  /payment/open/institution/v1/pay/gift/temp/list:
    get:
      summary: Get Gift Card Template List
      description: Get the list of available gift card cover templates.
      parameters:
        - $ref: '#/components/parameters/X-GatePay-Certificate-ClientId'
        - $ref: '#/components/parameters/X-GatePay-Signature'
        - $ref: '#/components/parameters/X-GatePay-Timestamp'
        - $ref: '#/components/parameters/X-GatePay-Nonce'
        - $ref: '#/components/parameters/X-GatePay-On-Behalf-Of'
      responses:
        '200':
          description: Query successful
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GiftCardTempListResponse'
              examples:
                successResponse:
                  summary: Success Response
                  value:
                    status: SUCCESS
                    code: '000000'
                    errorMessage: ''
                    data:
                      - card_temp_id: '293389550603997184'
                        image_url: >-
                          https://test-gateio-nft.s3.ap-northeast-1.amazonaws.com/image/688c908c72b1cb9b78039de44003b4f8de4009f5.jpg
                        title_en: anlitest
                        title_cn: anlitest常用
                        cover_type: theme
components:
  parameters:
    X-GatePay-Certificate-ClientId:
      name: X-GatePay-Certificate-ClientId
      in: header
      required: true
      description: Merchant client ID
      schema:
        type: string
        example: mZ96D37oKk-HrWJc
    X-GatePay-Signature:
      name: X-GatePay-Signature
      in: header
      required: true
      description: Signature
      schema:
        type: string
        example: >-
          b8c4705ff4c1357f2a27925dd180c1e1f4a244148f312a2dee5afbcc6f4b150e9ffceee455c5a298f895d43a64ee829eebdfd262539d45c41f7aee4336fd8c8c
    X-GatePay-Timestamp:
      name: X-GatePay-Timestamp
      in: header
      required: true
      description: Timestamp (milliseconds)
      schema:
        type: string
        example: '1738934053475'
    X-GatePay-Nonce:
      name: X-GatePay-Nonce
      in: header
      required: true
      description: Nonce
      schema:
        type: string
        example: '5417061546'
    X-GatePay-On-Behalf-Of:
      name: X-GatePay-On-Behalf-Of
      in: header
      required: true
      schema:
        type: string
      description: >-
        Required delegated-subject header. Provide the initiating account ID for
        this request. For institution merchant APIs, this is typically the
        target sub-account ID; for institution charge and transfer APIs, it can
        be either an institution account ID or a sub-account ID.
  schemas:
    GiftCardTempListResponse:
      type: object
      properties:
        status:
          type: string
          description: Response status
          example: SUCCESS
        code:
          type: string
          description: Response code
          example: '000000'
        errorMessage:
          type: string
          description: Error message
          example: ''
        data:
          type: array
          items:
            $ref: '#/components/schemas/GiftCardTempData'
    GiftCardTempData:
      type: object
      properties:
        card_temp_id:
          type: string
          description: Cover ID
          example: '293389550603997184'
        image_url:
          type: string
          description: Cover image URL
          example: >-
            https://test-gateio-nft.s3.ap-northeast-1.amazonaws.com/image/688c908c72b1cb9b78039de44003b4f8de4009f5.jpg
        title_en:
          type: string
          description: English title
          example: anlitest
        title_cn:
          type: string
          description: Chinese title
          example: anlitest常用
        cover_type:
          type: string
          description: Cover type
          example: theme

````