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

# Get Addresses History

> 查询已生成的充值地址列表。<br/>This endpoint returns a list of addresses associated with the specified wallet for a given chain's slip44, with pagination support. The response contains a list of addresses.



## OpenAPI

````yaml get /v1/wallet/address/list
openapi: 3.0.1
info:
  title: Custodial Wallet APIs
  description: Open APIs for BisonBlock Custodial Wallet
  license:
    name: Apache 2.0
  version: V1.0.0
servers:
  - url: https://sandbox-openapi.bisonblock.ai/api
    description: BisonBlock server url for Sandbox
security: []
paths:
  /v1/wallet/address/list:
    get:
      tags:
        - Wallets
      summary: Get Addresses History
      description: >-
        This endpoint returns a list of addresses associated with the specified
        wallet for a given chain's slip44, with pagination support. The response
        contains a list of addresses.
      operationId: list
      parameters:
        - name: pageNo
          in: query
          description: The page index, starting from 1.
          required: false
          schema:
            minimum: 1
            type: integer
            format: int32
            default: 1
        - name: pageSize
          in: query
          description: >-
            The number of items per page. Page size is optional. If not
            included, the default size will be 10
          required: false
          schema:
            type: integer
            format: int32
            default: 10
        - name: slip44
          in: query
          description: >-
            Chain's slip44 code, such as Bitcoin is 0, Ethereum is 60, Tron is
            195. Refer to [Registered coin
            types](https://github.com/satoshilabs/slips/blob/master/slip-0044.md)
          required: false
          schema:
            minimum: 0
            type: integer
            format: int64
            default: -1
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/ResultPageResultApiWalletAddressRes'
      security:
        - BIZ-API-KEY: []
          BIZ-API-NONCE: []
          BIZ-API-SIGNATURE: []
components:
  schemas:
    ResultPageResultApiWalletAddressRes:
      type: object
      properties:
        code:
          type: integer
          format: int32
          description: 0 is for success, others are for failure
        data:
          $ref: '#/components/schemas/PageResultApiWalletAddressRes'
        msg:
          type: string
    PageResultApiWalletAddressRes:
      type: object
      properties:
        pageNo:
          type: integer
          format: int64
          description: The current page index
        pageSize:
          type: integer
          format: int64
          description: The number of items per page.
        totalSize:
          type: integer
          format: int64
          description: The count of all items.
        totalPages:
          type: integer
          format: int64
          description: Total page count.
        list:
          type: array
          items:
            $ref: '#/components/schemas/ApiWalletAddressRes'
        prevPage:
          type: integer
          format: int64
          description: The previous page index
        nextPage:
          type: integer
          format: int64
          description: The next page index
    ApiWalletAddressRes:
      type: object
      properties:
        address:
          type: string
          description: Address for deposits
  securitySchemes:
    BIZ-API-KEY:
      type: apiKey
      in: header
      name: BIZ-API-KEY
      description: This field contains the API key.
    BIZ-API-NONCE:
      type: apiKey
      in: header
      name: BIZ-API-NONCE
      description: This field contains the nonce.
    BIZ-API-SIGNATURE:
      type: apiKey
      in: header
      name: BIZ-API-SIGNATURE
      description: This field contains the signature.

````