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

# List deposits for the caller

> Returns every deposit owned by the authenticated client.



## OpenAPI

````yaml /api-reference/openapi.json get /wallet/deposits
openapi: 3.0.0
info:
  title: Xenios Trading API
  description: >-
    Place and manage orders, stream live market and account data, and read
    wallets, deposits and reference data over one authenticated gateway. All
    protected endpoints are authenticated with an HMAC-SHA256 request signature
    (see the Authentication guide). Decimal amounts are strings; timestamps are
    ISO-8601. Successful responses are wrapped in a standard { statusCode,
    success, message, data } envelope.
  version: '1.0'
  contact: {}
servers:
  - url: https://<your-host>/api/v1/trading
    description: Development gateway. Prefix every trading path with this base URL.
security:
  - xenios-hmac: []
tags:
  - name: Orders
    description: >-
      Place, cancel, and read your orders. Placement is idempotent on
      client_order_id.
  - name: Order Book
    description: Top-of-book depth snapshots for a trading pair.
  - name: Products
    description: Tradable products and pairs, plus OHLCV candles for charting.
  - name: Assets
    description: The assets available to your account.
  - name: Wallets
    description: Generate deposit addresses and read deposit history.
  - name: Account
    description: Your trading fee and effective account settings.
  - name: Health
    description: Liveness and readiness probes.
paths:
  /wallet/deposits:
    get:
      tags:
        - Wallets
      summary: List deposits for the caller
      description: Returns every deposit owned by the authenticated client.
      operationId: listDeposits
      parameters: []
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                allOf:
                  - $ref: '#/components/schemas/ApiResponse'
                  - properties:
                      data:
                        type: array
                        items:
                          $ref: '#/components/schemas/Deposit'
        '401':
          description: Missing or invalid API credentials.
      security:
        - xenios-hmac:
            - read:assets
components:
  schemas:
    ApiResponse:
      type: object
      properties:
        statusCode:
          type: number
          description: HTTP status code echoed in the body.
          example: 200
        success:
          type: boolean
          description: True for success responses.
          example: true
        message:
          type: string
          description: Human-readable status message.
          example: Request processed successfully
      required:
        - statusCode
        - success
    Deposit:
      type: object
      properties:
        internalId:
          type: string
          description: Deposit id.
        id:
          type: string
          description: Exchange-side deposit reference id.
        walletId:
          type: string
          description: Receiving wallet id.
        portfolioId:
          type: string
          description: Portfolio id the deposit was credited to.
        type:
          type: string
          description: Transaction type (e.g. `DEPOSIT`).
        status:
          type: string
          description: Settlement status (`PENDING` / `COMPLETED` / `FAILED`).
          nullable: true
        symbol:
          type: string
          description: Asset symbol (e.g. `BTC`, `USD`).
        amount:
          type: string
          description: Deposited amount (string-encoded decimal).
          nullable: true
        createdAt:
          type: string
          format: date-time
        completedAt:
          type: string
          format: date-time
        transferFrom:
          type: object
          description: Source of the transfer.
          additionalProperties: true
        transferTo:
          type: object
          description: Destination of the transfer.
          additionalProperties: true
        networkFees:
          type: string
          nullable: true
        fees:
          type: string
          nullable: true
        feeSymbol:
          type: string
          nullable: true
        blockchainIds:
          description: Confirming blockchain tx ids.
          type: array
          items:
            type: string
        transactionId:
          type: string
          nullable: true
        destinationSymbol:
          type: string
          nullable: true
        estimatedNetworkFees:
          type: object
          nullable: true
        network:
          type: string
          nullable: true
        idempotencyKey:
          type: string
          nullable: true
        networkInfo:
          type: object
          additionalProperties: true
        deposit_address:
          type: string
          description: Receiving on-chain address.
          default: ''
        client_id:
          type: string
          description: Id of the client that owns this deposit.
          default: ''
      required:
        - internalId
        - id
        - walletId
        - portfolioId
        - type
        - symbol
        - createdAt
        - completedAt
        - transferFrom
        - transferTo
        - blockchainIds
        - networkInfo
        - deposit_address
        - client_id
  securitySchemes:
    xenios-hmac:
      type: apiKey
      in: header
      name: X-API-KEY
      description: >-
        HMAC-SHA256 authentication. Sign every request and send X-API-KEY,
        X-API-SIGNATURE, X-API-TIMESTAMP and X-API-NONCE (see the Authentication
        guide). Each route also requires a specific claim on your API key (e.g.
        read:orders, write:orders, read:account, read:market-data).

````