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

# List Static Addresses

> Queries the list of generated and valid static collection addresses.

## Overview

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

Queries the list of generated and valid static collection addresses.

## 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/list
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/list:
    get:
      tags:
        - Static Address Collection
      summary: Query Static Collection Address List
      description: Queries the list of generated and valid static collection addresses.
      operationId: listFixedAddresses
      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: page
          in: query
          required: true
          schema:
            type: integer
          description: A non-negative integer starting from 0, indicating the page number
        - name: count
          in: query
          required: true
          schema:
            type: integer
          description: >-
            A positive integer representing the number of entries displayed per
            page, with a maximum of 100
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ListFixedAddressesResponse'
              examples:
                success:
                  value:
                    status: SUCCESS
                    code: '000000'
                    errorMessage: ''
                    data:
                      total: 2
                      list:
                        - channelId: smart_shop1
                          chain: ETH
                          address: '0xE2b3fA811f04FD5Ac6559007795D6Fc74365126B'
                          currencies:
                            - USDC
                          callbackUrl: https://www.abc.com/callback
                          createTime: 1727603135221
                          updateTime: 1727603135221
                          desc: ''
                          ChainShowEn: ETH /ERC20
                          is_risk: 0
                        - channelId: smart_shop
                          chain: ETH
                          address: '0x3FdC81C3f549343a3E0706A382035B7B461C0840'
                          currencies:
                            - DAI
                            - USDT
                          callbackUrl: https://www.abc.com/callback
                          createTime: 1727603076963
                          updateTime: 1727603076963
                          desc: ''
                          ChainShowEn: ETH /ERC20
                          is_risk: 1
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:
    ListFixedAddressesResponse:
      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
            list:
              type: array
              items:
                $ref: '#/components/schemas/FixedAddressItem'
    FixedAddressItem:
      type: object
      properties:
        channelId:
          type: string
          description: Merchant channel ID
        chain:
          type: string
          description: Network
        address:
          type: string
          description: Collection address
        currencies:
          type: array
          items:
            type: string
          description: Currencies bound to this address
        callbackUrl:
          type: string
          description: Callback URL for collection notifications
        createTime:
          type: integer
          description: Creation time
        updateTime:
          type: integer
          description: First update time
        desc:
          type: string
          description: Description
        ChainShowEn:
          type: string
          description: The English name of chain
        is_risk:
          type: integer
          description: 'Mark risk address, 0: normal, 1: risk'

````