> ## 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 Crypto Withdraw Quote

> Get a crypto withdrawal quote for a coin and network.

**Response field values**

| Field | Possible Values |
| --- | --- |
| `fee_breakup` keys | `platform_fee`, `network_fee`, `client_fee`, `discount`, `tax_on_fee`, `tds` |




## OpenAPI

````yaml openapi-v2.json GET /api/v2/wallet/withdraw/quote
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/withdraw/quote:
    get:
      tags:
        - Wallet Operations
      summary: Get Crypto Withdraw Quote
      description: >
        Get a crypto withdrawal quote for a coin and network.


        **Response field values**


        | Field | Possible Values |

        | --- | --- |

        | `fee_breakup` keys | `platform_fee`, `network_fee`, `client_fee`,
        `discount`, `tax_on_fee`, `tds` |
      operationId: get-withdraw-quote-v2
      parameters:
        - name: coin
          in: query
          required: true
          description: Coin symbol.
          schema:
            type: string
            description: Coin symbol.
        - name: network
          in: query
          required: true
          description: Network identifier.
          schema:
            type: string
            description: Network identifier.
        - name: amount
          in: query
          required: true
          description: Gross amount. Must be greater than zero.
          schema:
            type: number
            description: Gross amount. Must be greater than zero.
        - 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: object
                    properties:
                      coin:
                        type: string
                      network:
                        type: string
                      amount:
                        type: integer
                      pre_fee_amount:
                        type: integer
                      withdraw_min:
                        type: integer
                      total_fee:
                        type: number
                      fee_breakup:
                        type: object
              example:
                success: true
                data:
                  coin: USDT
                  network: BSC
                  amount: 10
                  pre_fee_amount: 10
                  withdraw_min: 1
                  total_fee: 0.8
                  fee_breakup:
                    platform_fee: 0
                    network_fee: 0.8
                    client_fee: 0
                    discount: 0
                    tax_on_fee: 0
                    tds: 0
        '400':
          description: >-
            `400`: missing or invalid parameters; `5013`: amount less than min
            withdraw amount
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    enum:
                      - false
                  errors:
                    type: array
                    items:
                      type: object
                      properties:
                        code:
                          type:
                            - integer
                            - string
                        text:
                          type: string
              example:
                success: false
                errors:
                  - code: 5013
                    text: amount less than min withdraw amount
        '500':
          description: >-
            `901011`: service configuration missing. please contact support;
            `499999`: Something went wrong!
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    enum:
                      - false
                  errors:
                    type: array
                    items:
                      type: object
                      properties:
                        code:
                          type:
                            - integer
                            - string
                        text:
                          type: string
              example:
                success: false
                errors:
                  - code: 5013
                    text: amount less than min withdraw amount

````

## Related topics

- [Get Crypto Withdraw Transaction Details](/api-reference/wallet-operations/crypto-withdraw/get-crypto-withdraw-transaction-details.md)
- [Get List of Crypto Withdraw Transactions](/api-reference/wallet-operations/crypto-withdraw/get-list-of-crypto-withdraw-transactions.md)
- [Get External Wallet Quote](/api-reference/onramp/get-external-wallet-quote.md)
- [Get Crypto Deposit Transaction Details](/api-reference/wallet-operations/crypto-deposit/get-crypto-deposit-transaction-details.md)
- [Get Sell Transaction Details](/api-reference/offramp/from-user-wallet/get-sell-transaction-details.md)
