> ## 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.

# Query Subscription Plan List

> Query subscription plan list

## Overview

This page documents the `GET /open/v1/plan/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/subscription/planList-openapi.json GET /open/v1/plan/list
openapi: 3.1.0
info:
  title: GatePay API
  description: GatePay Payment Platform API Documentation
  license:
    name: MIT
  version: 1.0.0
servers:
  - url: https://openplatform.gateapi.io/pay-subscription
security: []
paths:
  /open/v1/plan/list:
    get:
      summary: Query Subscription Plan List
      description: Query subscription plan list
      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/planList_planStatus'
        - $ref: '#/components/parameters/planList_productNo'
        - $ref: '#/components/parameters/planList_page'
        - $ref: '#/components/parameters/planList_count'
      responses:
        '200':
          description: Query subscription plan list successful
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CreateSubscriptionPlanResponse'
              examples:
                successResponse:
                  summary: Success Response
                  value:
                    code: '0'
                    message: ''
                    data:
                      total: 1
                      list:
                        - merchantPlanNo: plan031004
                          planNo: '63784847096545341'
                          planName: Plan 01
                          planDesc: Plan Description 01
                          productName: '2'
                          productNo: '2'
                          priceNo: '3'
                          priceName: Weekly
                          cryptoCurrency: USDT
                          cryptoAmount: '5'
                          period: WEEK
                          planStatus: 'on'
                          createTime: 1773107374000
                          updateTime: 1773107374000
                    success: true
components:
  parameters:
    X-GatePay-Certificate-ClientId:
      name: X-GatePay-Certificate-ClientId
      in: header
      required: true
      description: Merchant client ID, obtained from GatePay platform application
      schema:
        type: string
        example: 4186d0c6-6a35-55a9-8dc6-5312769dbff8
    X-GatePay-Signature:
      name: X-GatePay-Signature
      in: header
      required: true
      description: HMAC-SHA256 signature, used to verify request legitimacy
      schema:
        type: string
        example: >-
          672d5650dcc9bb22ebf25fa16c28d03c0e159d742a9176d4340a5da326d75dc8a2ec24c97fa6fc5d1533dd6e968863747e1d86a45e562cbe899f9ed7e9ca7f77
    X-GatePay-Timestamp:
      name: X-GatePay-Timestamp
      in: header
      required: true
      description: >-
        Timestamp (milliseconds), time difference with server cannot exceed 5
        minutes
      schema:
        type: string
        example: '1672905655498'
    X-GatePay-Nonce:
      name: X-GatePay-Nonce
      in: header
      required: true
      description: Random number, used to prevent replay attacks
      schema:
        type: string
        example: '9578'
    planList_planStatus:
      name: planStatus
      in: query
      required: false
      description: Subscription plan status filter
      schema:
        type: string
        enum:
          - ACTIVE
          - INACTIVE
        example: ACTIVE
    planList_productNo:
      name: productNo
      in: query
      required: false
      description: Product number filter
      schema:
        type: string
        example: PROD_ABC123
    planList_page:
      name: page
      in: query
      required: false
      description: Page number, starting from 1, default 1
      schema:
        type: integer
        format: int32
        minimum: 1
        default: 1
        example: 1
    planList_count:
      name: count
      in: query
      required: false
      description: Number per page, maximum 100, default 10
      schema:
        type: integer
        format: int32
        minimum: 1
        maximum: 100
        default: 10
        example: 10
  schemas:
    CreateSubscriptionPlanResponse:
      type: object
      properties:
        code:
          type: string
          description: Response code, 0 indicates success
          example: '0'
        message:
          type: string
          description: Response description, empty when successful
          example: ''
        success:
          type: boolean
          description: Whether the request was successful
          example: true
        data:
          type: object
          description: Response data
          properties:
            total:
              type: integer
              description: Total count
              format: int32
              example: 100
            list:
              type: array
              description: Subscription plan list
              items:
                type: object
                properties:
                  merchantPlanNo:
                    type: string
                    description: Merchant subscription plan number
                    example: plan031004
                  planNo:
                    type: string
                    description: Platform subscription plan number
                    example: '63784604430893064'
                  planName:
                    type: string
                    description: Subscription plan name
                    example: Monthly Membership Plan
                  planDesc:
                    type: string
                    description: Subscription plan description
                    example: Monthly auto-renewal, enjoy exclusive member benefits
                  productNo:
                    type: string
                    description: Associated product number
                    example: PROD_ABC123
                  productName:
                    type: string
                    description: Associated product name
                    example: Membership Product
                  priceNo:
                    type: string
                    description: Associated price number
                    example: PRICE_ABC123
                  priceName:
                    type: string
                    description: Associated price name
                    example: Monthly Price
                  cryptoCurrency:
                    type: string
                    description: Cryptocurrency type
                    example: USDT
                  cryptoAmount:
                    type: string
                    description: Cryptocurrency amount
                    example: '10.000000'
                  period:
                    type: string
                    description: Deduction period
                    example: MONTH
                  interval:
                    type: integer
                    description: Deduction interval
                    format: int32
                    example: 1
                  planStatus:
                    type: string
                    description: Subscription plan status
                    example: ACTIVE
                  createTime:
                    type: integer
                    description: Creation time
                    format: int64
                    example: 1767225600000
                  updateTime:
                    type: integer
                    description: Update time
                    format: int64
                    example: 1767225600000

````