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

# Static Address Order List

> Queries the static collection order list.

## Overview

This page documents the `GET /v1/pay/fixedaddress/order/query` endpoint. The full schema, parameters, and examples are rendered from the linked OpenAPI definition above.

Queries the static collection order list.

## 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/fixed-address-openapi.json GET /v1/pay/fixedaddress/order/query
openapi: 3.1.0
info:
  title: GatePay API - Static Address Collection
  version: 1.0.0
servers:
  - url: https://openplatform.gateapi.io
security: []
paths:
  /v1/pay/fixedaddress/order/query:
    get:
      tags:
        - Static Address Collection
      summary: Query Static Address Order List
      description: Queries the static collection order list.
      operationId: queryFixedAddressOrders
      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'
        - name: channelId
          in: query
          required: true
          schema:
            type: string
          description: Merchant channel name
        - name: chain
          in: query
          required: true
          schema:
            type: string
          description: Network name
        - name: startTime
          in: query
          required: true
          schema:
            type: integer
          description: Order creation time start in milliseconds
        - name: endTime
          in: query
          required: true
          schema:
            type: integer
          description: Order creation time end in milliseconds
        - name: page
          in: query
          required: false
          schema:
            type: integer
          description: A non-negative integer starting from 0, indicating the page number
        - name: count
          in: query
          required: false
          schema:
            type: integer
          description: >-
            A positive integer representing the number of entries displayed per
            page, with a maximum of 5000
        - name: address
          in: query
          required: false
          schema:
            type: string
          description: Collection address
        - name: fromAddress
          in: query
          required: false
          schema:
            type: string
          description: Payer address
        - name: txHash
          in: query
          required: false
          schema:
            type: string
          description: Transaction Hash
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/QueryFixedAddressOrdersResponse'
              examples:
                success:
                  value:
                    status: SUCCESS
                    code: '000000'
                    errorMessage: ''
                    data:
                      total: 1
                      details:
                        - chain: ETH
                          channelId: '123456'
                          currency: USDT
                          address: '0x67C30f439D7734f393c2F4a587B198b8F4086Ccb'
                          amount: '0.62345679'
                          status: PAID
                          txTime: 1730960078091
                          fromAddress: PAzupoupdSYaYoajDcABEUzigBRzewvzN
                          txHash: '1820949498602496000930038912'
                          transactionId: '343656213785650801'
components:
  parameters:
    X-GatePay-Certificate-ClientId:
      name: X-GatePay-Certificate-ClientId
      in: header
      required: true
      description: >-
        The clientId assigned when the merchant registers an application in the
        Gate merchant console.
      schema:
        type: string
        example: 4186d0c6-6a35-55a9-8dc6-5312769dbff8
    X-GatePay-Signature:
      name: X-GatePay-Signature
      in: header
      required: true
      description: >-
        Request signature. GatePay uses this signature to verify whether the
        request is valid.
      schema:
        type: string
    X-GatePay-Timestamp:
      name: X-GatePay-Timestamp
      in: header
      required: true
      description: >-
        UTC timestamp in milliseconds when the request is generated. GatePay
        will not process requests where the difference from the receive time
        exceeds 10 seconds.
      schema:
        type: string
        example: '1672905655498'
    X-GatePay-Nonce:
      name: X-GatePay-Nonce
      in: header
      required: true
      description: >-
        Random string. Must comply with HTTP header rules; recommended length is
        within 32 characters, composed of digits and letters.
      schema:
        type: string
        example: '9578'
  schemas:
    QueryFixedAddressOrdersResponse:
      type: object
      properties:
        status:
          type: string
          description: API response result, SUCCESS or FAIL.
          enum:
            - SUCCESS
            - FAIL
        code:
          type: string
          description: Response error code.
        errorMessage:
          type: string
          description: Error description.
        data:
          type: object
          properties:
            total:
              type: integer
              description: Total amount
            details:
              type: array
              items:
                $ref: '#/components/schemas/PaymentDetails'
    PaymentDetails:
      type: object
      properties:
        chain:
          type: string
          description: Network name
        channelId:
          type: string
          description: Merchant channel name
        currency:
          type: string
          description: Currency
        address:
          type: string
          description: Collection address
        amount:
          type: string
          description: Income amount
        status:
          type: string
          description: Order status
        txTime:
          type: integer
          description: Order creation time
        fromAddress:
          type: string
          description: Payer address
        txHash:
          type: string
          description: Transaction Hash
        transactionId:
          type: string
          description: Transaction ID

````