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

# Instant crypto withdrawals

To provide the best experience for your customers, consider using *instant withdrawals* when the processing speed is critical. They work just like standard [withdrawals](/integration-guide/withdrawals), but faster: CryptoProcessing processes them with a higher priority and sends them to the network within **30 seconds to 2 minutes**.

When using instant withdrawals, the network fee is always charged, regardless of your fee package.

<Note>
  Instant withdrawals are only supported for **Bitcoin, Bitcoin Cash, Litecoin, and DOGE**.
</Note>

To switch from standard withdrawals to instant withdrawals:

<Steps>
  <Step title="Contact CryptoProcessing support team">
    Ask CryptoProcessing support team to enable the feature for the currencies you need.
  </Step>

  <Step title="Replace the API endpoints">
    Replace [/api/v2/withdrawal/crypto](/api-reference/endpoints/withdrawal-crypto) with one of these special API endpoints wherever you need to prioritize the processing speed:

    * [/api/v2/crypto/withdrawal\_instant](/api-reference/endpoints/crypto-withdrawal-instant)
    * [/api/v2/crypto/withdrawal\_instant\_exchange](/api-reference/endpoints/crypto-withdrawal-instant-exchange)

    The requests for both API endpoints are similar to [/api/v2/withdrawal/crypto](/api-reference/endpoints/withdrawal-crypto), but some parameter names are different.
  </Step>

  <Step title="Support additional callbacks">
    Update the callback handler to support two additional CryptoProcessing [callbacks](/api-reference/callbacks/withdrawal-callbacks):

    * **withdrawal\_instant**
    * **withdrawal\_instant\_exchange**

    To make sure you support all possible scenarios, use our [integration test cases](/integration-guide/withdrawals/test-cases#instant).
  </Step>
</Steps>
