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

# List Transactions (v1)

> This endpoint covers 5 documented variants, distinguished by query parameter value:
- **Get List of Pool Sell Transactions** (`get-list-of-pool-sell-transactions`): Get 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 List of Buy Transactions
- **Get List of Pool Buy Transactions** (`get-list-of-pool-buy-transactions`): Get List of Pool Buy Transactions
- **Get List of Crypto Deposit Transactions** (`get-list-of-crypto-deposit-transactions`): Get List of Crypto Deposit Transactions



## OpenAPI

````yaml /openapi-v1.json get /api/v2/wallet/transactions
openapi: 3.1.0
info:
  title: Saber Money API (v1)
  version: v1
  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 (v1)
      description: >-
        This endpoint covers 5 documented variants, distinguished by query
        parameter value:

        - **Get List of Pool Sell Transactions**
        (`get-list-of-pool-sell-transactions`): Get 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
        List of Buy Transactions

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

        - **Get List of Crypto Deposit Transactions**
        (`get-list-of-crypto-deposit-transactions`): Get List of Crypto Deposit
        Transactions
      operationId: get-list-of-pool-sell-transactions-v1
      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: The transaction_type parameter
          schema:
            type: string
            description: The transaction_type parameter
      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:
                            - POOL_SELL
                            - SELL
                            - ONRAMP_AND_WITHDRAW
                            - POOL_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:
                      history:
                        - id: 42a054f3-3c15-407c-9cd7-2641ab867643
                          transaction_type: DEPOSIT
                          status: COMPLETED
                          amount: 10.5
                          usd_value: 10.5
                          address: '0x94f30b2a43ec890848c64ecdbb434ea1bcc4b798'
                          source_address: 0xsource...
                          network: BSC
                          tag: ''
                          crypto_symbol: USDT
                          txn_hash: >-
                            0xf9c493a740dd47fe9cc282e5aac19f8a64056e42dff71cdcaa7159cd9e354d87
                          created_at: 1730000000000
                          updated_at: 1730000000000
                          fees: 0
                          compliance: {}
                      count: 1

````

## Related topics

- [Get List of Crypto Withdraw Transactions (v1)](/api-reference/wallet-operations/get-list-of-crypto-withdraw-transactions-v1.md)
- [List EDD Requests (v1)](/api-reference/kyc-and-edd-operations/list-edd-requests-v1.md)
- [Get List of Internal Transfers (All) (v1)](/api-reference/wallet-operations/get-list-of-internal-transfers-all-v1.md)
- [Get List of Internal Transfers (Single Asset) (v1)](/api-reference/wallet-operations/get-list-of-internal-transfers-single-asset-v1.md)
- [Get List of Transactions](/onramp/operations/fetch-list.md)
