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

# Get All Deposit Transactions

> Get all deposit transactions



## OpenAPI

````yaml openapi-v2.json GET /api/v1/wallet/deposit_history
openapi: 3.1.0
info:
  title: Saber Money API (v2)
  version: v2
  description: >-
    ## Authentication


    There is no standalone API-key auth — every request must be **signed**. An
    API key by itself authenticates nothing. Each call requires four headers
    together: `X-Api-Key` (your key), `X-Signature` (HMAC-SHA256 of `apiKey +
    timestamp` — or `apiKey + timestamp + userId` when `X-User-Id` is required —
    keyed with your API secret), `X-Timestamp` (unix seconds), and
    `X-Request-Id` (any unique string per request). The signature must be
    computed by a client script; there is no way to derive it by hand. Use the
    HMAC Generator flow to compute valid values for manual testing.


    ## Common Authentication Errors


    - **Invalid Client ID**: {"error_code":6092,"message":"X-Client-Id
    invalid","success":false}

    - **Invalid Secret**: {"error_code":6090,"message":"invalid
    secret","success":false}

    - **Timestamp (Older than 10 secs)**:
    {"errors":{"error_code":6093,"text":"timestamp expired"},"success":false}
servers:
  - url: https://api.saber.money
security: []
paths:
  /api/v1/wallet/deposit_history:
    get:
      tags:
        - Transfer Crypto
      summary: Get all deposit transactions
      description: Get all deposit transactions
      operationId: get-all-deposit-transactions-v2
      parameters:
        - name: per_page
          in: query
          required: true
          description: The per_page parameter
          schema:
            type: string
            description: The per_page parameter
        - name: page
          in: query
          required: true
          description: The page parameter
          schema:
            type: string
            description: The page parameter
        - name: X-Api-Key
          in: header
          required: true
          description: Your API key (configured in credentials)
          schema:
            type: string
        - name: X-Signature
          in: header
          required: true
          description: >-
            HMAC-SHA256 signature (auto-generated) To test manually: HMAC-SHA256
            of `apiKey + timestamp` (or `apiKey + timestamp + userId` when
            X-User-Id is required), keyed with your API secret. The HMAC
            Generator flow computes this for you.
          schema:
            type: string
        - name: X-Timestamp
          in: header
          required: true
          description: >-
            Unix timestamp in seconds (auto-generated) Unix seconds, e.g.
            `Math.floor(Date.now() / 1000)`. Must match the timestamp used in
            the X-Signature computation.
          schema:
            type: string
        - name: X-Request-Id
          in: header
          required: true
          description: >-
            Unique request identifier (auto-generated) Any unique string per
            request, e.g. a UUID.
          schema:
            type: string
        - name: X-User-Id
          in: header
          required: true
          description: User UUID (set above)
          schema:
            type: string
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                  data:
                    type: array
                    items:
                      type: object
                      properties:
                        transaction_type:
                          type: string
                        created_at:
                          type: integer
                        amount:
                          type: integer
                        network:
                          type: string
                        updated_at:
                          type: integer
                        source_address:
                          type:
                            - string
                            - 'null'
                        address:
                          type: string
                        status:
                          type: string
                        crypto_symbol:
                          type: string
                        usd_value:
                          type: integer
                        id:
                          type: string
                        txn_hash:
                          type: string
                        tag:
                          type: string
              example:
                success: true
                data:
                  - transaction_type: DEPOSIT
                    created_at: 1675171122000
                    amount: 10
                    network: BSC
                    updated_at: 1675171310000
                    source_address: null
                    address: '0x94f30b2a43ec890848c64ecdbb434ea1bcc4b798'
                    status: COMPLETED
                    crypto_symbol: USDT
                    usd_value: 10
                    id: 91994108-9eff-4999-8e8f-238df8bd4961
                    txn_hash: Internal transfer 127897710444
                    tag: ''
                  - transaction_type: DEPOSIT
                    created_at: 1675165880000
                    amount: 9
                    network: MATIC
                    updated_at: 1675166104000
                    source_address: null
                    address: '0x94f30b2a43ec890848c64ecdbb434ea1bcc4b798'
                    status: COMPLETED
                    crypto_symbol: USDT
                    usd_value: 9
                    id: 42a054f3-3c15-407c-9cd7-2641ab867643
                    txn_hash: Internal transfer 127892568047
                    tag: ''

````

## Related topics

- [Get List of Crypto Deposit Transactions](/api-reference/wallet-operations/crypto-deposit/get-list-of-crypto-deposit-transactions.md)
- [Get Crypto Deposit Transaction Details](/api-reference/wallet-operations/crypto-deposit/get-crypto-deposit-transaction-details.md)
- [Get List of Buy Transactions](/api-reference/onramp/to-external-wallet/get-list-of-buy-transactions.md)
- [Get List of Sell Transactions](/api-reference/offramp/from-user-wallet/get-list-of-sell-transactions.md)
- [Get List of Pool Buy Transactions](/api-reference/onramp/to-pool-wallet/get-list-of-pool-buy-transactions.md)
