> ## 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 List of Crypto Withdraw Transactions

> This endpoint covers 6 documented variants, distinguished by query parameter value:
- **Get List of Pool Sell Transactions** (`get-list-of-pool-sell-transactions`): Get the list of pool sell transactions.
- **Get List of Sell Transactions** (`get-list-of-sell-transactions`): Fetch list of all sell transactions for a user by user_uuid
- **Get List of Buy Transactions** (`get-list-of-buy-transactions`): Get the list of external buy transactions.
- **Get List of Pool Buy Transactions** (`get-list-of-pool-buy-transactions`): Get the list of pool buy transactions.
- **Get List of Crypto Deposit Transactions** (`get-list-of-crypto-deposit-transactions`): Get the list of crypto deposit transactions.
- **Get List of Crypto Withdraw Transactions** (`get-list-of-crypto-withdraw-transactions`): Get the list of crypto withdraw transactions.

Pass `transaction_type=WITHDRAW` to list crypto withdraw transactions.

**Possible `status` values:** `CREATED`, `PROCESSING`, `PENDING`, `COMPLETED`, `FAILED`, `CANCELLED`, `REVERTED`, `REJECTED`, `EXPIRED`, `SOURCE_INVALID`, `APPROVAL_REQUIRED`, `SUCCESSFUL`, `REFUND_INITIATED`, `REFUND_COMPLETED`, `REFUND_FAILED`


## OpenAPI

````yaml openapi-v2.json GET /api/v2/wallet/transactions
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/v2/wallet/transactions:
    get:
      tags:
        - Offramp
        - Onramp
        - Wallet Operations
      summary: List Transactions
      description: >-
        This endpoint covers 6 documented variants, distinguished by query
        parameter value:

        - **Get List of Pool Sell Transactions**
        (`get-list-of-pool-sell-transactions`): Get the list of pool sell
        transactions.

        - **Get List of Sell Transactions** (`get-list-of-sell-transactions`):
        Fetch list of all sell transactions for a user by user_uuid

        - **Get List of Buy Transactions** (`get-list-of-buy-transactions`): Get
        the list of external buy transactions.

        - **Get List of Pool Buy Transactions**
        (`get-list-of-pool-buy-transactions`): Get the list of pool buy
        transactions.

        - **Get List of Crypto Deposit Transactions**
        (`get-list-of-crypto-deposit-transactions`): Get the list of crypto
        deposit transactions.

        - **Get List of Crypto Withdraw Transactions**
        (`get-list-of-crypto-withdraw-transactions`): Get the list of crypto
        withdraw transactions.
      operationId: get-list-of-pool-sell-transactions-v2
      parameters:
        - 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
        - name: transaction_type
          in: query
          required: true
          description: Filters the list by transaction type.
          schema:
            type: string
            description: Filters the list by transaction type.
            enum:
              - EXTERNAL_SELL
              - POOL_SELL
              - SELL
              - BUY
              - POOL_BUY
              - EXTERNAL_BUY
              - DEPOSIT
              - WITHDRAW
        - name: limit
          in: query
          required: false
          description: Maximum records to return. Defaults to `10` if invalid or absent.
          schema:
            type: integer
            description: Maximum records to return. Defaults to `10` if invalid or absent.
        - name: offset
          in: query
          required: false
          description: Millisecond timestamp cursor.
          schema:
            type: integer
            description: Millisecond timestamp cursor.
      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
                          enum:
                            - EXTERNAL_SELL
                            - POOL_SELL
                            - SELL
                            - BUY
                            - POOL_BUY
                            - EXTERNAL_BUY
                            - CRYPTO_DEPOSIT
                            - CRYPTO_WITHDRAW
                        status:
                          type: string
                          enum:
                            - CREATED
                            - PROCESSING
                            - PENDING
                            - COMPLETED
                            - FAILED
                            - CANCELLED
                            - REVERTED
                            - REJECTED
                            - EXPIRED
                            - SOURCE_INVALID
                            - APPROVAL_REQUIRED
                            - SUCCESSFUL
                            - REFUND_INITIATED
                            - REFUND_COMPLETED
                            - REFUND_FAILED
                        created_at:
                          type: integer
                        updated_at:
                          type: integer
                        id:
                          type: string
                        crypto_symbol:
                          type: string
                        fiat_symbol:
                          type: string
                        exchange_rate:
                          type: integer
                        crypto_amount:
                          type: number
                        fiat_amount:
                          type:
                            - number
                            - integer
                        bank_transaction_id:
                          type: string
                        failure_code:
                          type: string
                        failure_desc:
                          type: string
                        history:
                          type: array
                          items:
                            type: object
                        count:
                          type: integer
                        amount:
                          type:
                            - integer
                            - number
                        uuid:
                          type: string
                        symbol:
                          type: string
                        user_id:
                          type: string
                        usd_value:
                          type:
                            - integer
                            - number
                        tag:
                          type: string
                        source_address:
                          type: string
                        address:
                          type: string
                        network:
                          type: string
                        txn_hash:
                          type: string
              examples:
                get-list-of-pool-sell-transactions:
                  summary: Get List of Pool Sell Transactions
                  value:
                    success: true
                    data:
                      - transaction_type: POOL_SELL
                        status: COMPLETED
                        created_at: 1742207176000
                        updated_at: 1742207176000
                        id: 0195a3a3-cca4-7773-9d52-df292561b31d
                        crypto_symbol: USDT
                        fiat_symbol: INR
                        exchange_rate: 0
                        crypto_amount: 16.253604
                        fiat_amount: 1374.56689273
                        bank_transaction_id: '1234'
                get-list-of-sell-transactions:
                  summary: Get List of Sell Transactions
                  value:
                    success: true
                    data:
                      - id: c9d5e390-a79a-4f49-a4d9-a3d5b74e325d
                        transaction_type: SELL
                        status: PROCESSING
                        created_at: 1748500000000
                        updated_at: 1748500000000
                        crypto_symbol: USDT
                        fiat_symbol: INR
                        crypto_amount: 12.05
                        fiat_amount: 1000
                        failure_code: ''
                        failure_desc: ''
                get-list-of-buy-transactions:
                  summary: Get List of Buy Transactions
                  value:
                    success: true
                    data:
                      - id: 7f6d5dba-37ea-4cb3-92a8-4c3230bd2162
                        transaction_type: ONRAMP_AND_WITHDRAW
                        status: ONRAMP_COMPLETED
                        created_at: 1726956980000
                        updated_at: 1726957204000
                        fiat_amount: 0
                        crypto_amount: 1.084745
                        failure_code: ''
                        failure_desc: ''
                get-list-of-pool-buy-transactions:
                  summary: Get List of Pool Buy Transactions
                  value:
                    success: true
                    data:
                      - transaction_type: POOL_BUY
                        status: COMPLETED
                        created_at: 1744881163000
                        updated_at: 1744881251000
                        id: 01964305-9cb6-7801-a27a-3311171cf1ec
                        crypto_symbol: USDT
                        fiat_symbol: EUR
                        exchange_rate: 0
                        crypto_amount: 21.11111111
                        fiat_amount: 19
                get-list-of-crypto-deposit-transactions:
                  summary: Get List of Crypto Deposit Transactions
                  value:
                    success: true
                    data:
                      - id: 019d1ac0-efde-77fd-b837-4e6a51d2e798
                        transaction_type: CRYPTO_DEPOSIT
                        status: COMPLETED
                        amount: 20
                        created_at: 1774270345000
                        updated_at: 1774270345000
                        uuid: 019d1ac0-efde-77fd-b837-4e6a51d2e798
                        symbol: USDT
                        user_id: 0087fe08-1d36-43d5-8c9c-94d7c934b8e8
                        usd_value: 20
                        tag: ''
                        source_address: ''
                        address: 500915ff-3cc1-4486-bf32-0469458f6f7c
                        network: BSC
                      - id: 019d1eff-5387-7c10-b2e2-0458512bb315
                        transaction_type: CRYPTO_DEPOSIT
                        status: COMPLETED
                        amount: 15
                        created_at: 1774341543000
                        updated_at: 1774341543000
                        uuid: 019d1eff-5387-7c10-b2e2-0458512bb315
                        symbol: USDT
                        user_id: 0087fe08-1d36-43d5-8c9c-94d7c934b8e8
                        usd_value: 15
                        tag: ''
                        source_address: ''
                        address: 48fb84b2-3166-499b-8492-11434d8fe598
                        network: BSC
                get-list-of-crypto-withdraw-transactions:
                  summary: Get List of Crypto Withdraw Transactions
                  value:
                    success: true
                    data:
                      - id: 019d1f43-f157-71c4-b52e-efffef7e6896
                        transaction_type: CRYPTO_WITHDRAW
                        status: COMPLETED
                        amount: 9
                        created_at: 1774346040000
                        updated_at: 1774346041000
                        uuid: 019d1f43-f157-71c4-b52e-efffef7e6896
                        symbol: USDT
                        user_id: 0087fe08-1d36-43d5-8c9c-94d7c934b8e8
                        usd_value: 9
                        txn_hash: 019d1f43-f3dc-7e30-b203-3d5f5f1f3f0c
                        tag: ''
                        source_address: ''
                        address: '0x226af21d60133c23a59d51d1111439ca8afd26a7'
                        network: BSC
                      - id: 019d1f20-2909-745d-8cc1-012f8352de4d
                        transaction_type: CRYPTO_WITHDRAW
                        status: COMPLETED
                        amount: 221.5
                        created_at: 1774343695000
                        updated_at: 1774343697000
                        uuid: 019d1f20-2909-745d-8cc1-012f8352de4d
                        symbol: USDT
                        user_id: 0087fe08-1d36-43d5-8c9c-94d7c934b8e8
                        usd_value: 221.5
                        txn_hash: 019d1f20-304a-72d8-b1d9-fc8edace5e12
                        tag: ''
                        source_address: ''
                        address: '0x226af21d60133c23a59d51d1111439ca8afd26a7'
                        network: BSC

````

## Related topics

- [Get List of Crypto Deposit Transactions](/api-reference/wallet-operations/crypto-deposit/get-list-of-crypto-deposit-transactions.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)
- [Get List of Pool Sell Transactions](/api-reference/offramp/from-pool-wallet/get-list-of-pool-sell-transactions.md)
