1. Crypto Withdrawal
v2.1 (Production)
  • v2.1 (Production)
  • v2.1 (Sandbox)
  • v2.0 (Sandbox)
  • v1.0 (Deprecated)
  • v2.1
    • Getting Started
    • Account Setup For PSP
    • Account Setup For Direct Client
    • Idempotent Requests
    • Webhook
    • API Error Handling Guide
    • Changelog
    • Authentication
      • Create Token
    • Account Management
      • Get Balance
      • Internal Transfer
      • Get Internal Transfer
    • Merchant Management
      • Initiate Merchant Activation
      • Confirm Merchant Activation
      • Create Merchant
      • Get Merchant
      • Merchant Status Webhook
    • Fiat Payment
      • Fiat Deposit
        • Get Deposit Bank Account
        • Get Fiat Deposit Detail
        • Get Fiat Deposit History
        • Fiat Deposit Webhook
      • Fiat Account Management
        • Get Fiat Account Capabilities
        • Create Fiat Account Request
        • Submit Additional Information for Fiat Account Request
        • Get Fiat Account Application Status
        • Get Bank Accounts
        • Add Bank Account
        • Fiat Account Request Status Webhook
      • Fiat Withdrawal
        • Get Same Name Withdrawal Capabilities
        • Activate Same Name Withdrawal
        • Submit Additional Information for Activating Same Name Withdrawal
        • Activate Same Name Withdrawal Webhook
        • Create Fiat Withdrawal
        • Submit Additional Information for Fiat Withdrawal Request
        • Get Fiat Withdrawal Detail
        • Get Fiat Withdrawal History
        • Fiat Withdrawal Webhook
    • Crypto Payment
      • Crypto Deposit
        • Update Crypto Deposit Travel Rule Info
        • Get Crypto Deposit Wallet
        • Get Crypto Deposit
        • Get Crypto Deposit History
        • Crypto Deposit Webhook
      • Crypto Withdrawal
        • Register Wallet Address
          POST
        • Remove Wallet Address
          POST
        • Create Crypto Withdrawal
          POST
        • Get Wallet Address
          GET
        • Get Crypto Withdrawal
          GET
        • Get Crypto Withdrawal History
          GET
        • Crypto Withdrawal Webhook
      • Crypto Checkout v1.0
        • Create Crypto Checkout
        • Create Crypto Checkout Link
        • Crypto Checkout Wallet Connection
        • Generate POS Payment Request
        • Close Crypto Checkout
        • Get Convertible Cryptos
        • Get Supported Blockchains
        • Get Crypto Checkout
        • Get Crypto Checkout Link
        • Get Crypto Checkout Currencies
        • Crypto Checkout Webhook
      • Crypto Refund v1.0
        • Create Crypto Refund
        • Confirm Crypto Refund
        • Get Crypto Refund
        • Crypto Refund Webhook
      • Crypto Checkout v2.0
        • Create Checkout
        • Create Crypto Quotation
        • Order Accept
        • Get Checkout History
        • Get Checkout
        • Close Checkout
        • Get Checkout Acceptable Cryptos
        • Checkout Status Webhook
      • Crypto Refund v2.0
        • Get Checkout Refundable Info
        • Create Crypto Void
        • Create Crypto Risk Refund
        • Create Crypto Refund
        • Close Crypto Refund
        • Get Crypto Refund
        • Refund Status Webhook
    • Conversion
      • Create Quotation
      • Create Conversion
      • Get Quotation
      • Get Conversion
      • Conversion Webhook
    • Statements
      • Create statement
      • Get statement overview
      • Get statement entries
      • Get statement transactions
    • Points
      • Get Points Balance
      • List Points Transactions
      • Get Points Transaction Detail
    • Fee Estimate
      • Fee Estimate
    • Tool
      • Upload File
      • getTnC
  1. Crypto Withdrawal

Create Crypto Withdrawal

POST
/v2.0/payment/crypto/createCryptoWithdrawal
API Overview
ItemValue
API StatusStable
Current Versionv2.0
Backward CompatibilityYes
Applicable EnvironmentProduction
Applicable User RolesPSP and Direct Client

Description
Create Crypto Withdrawal Request

2026-07-07 Update
Request Body Additions
amountType (integer, required) — 1=Debit (gross debit amount), 2=Receive (net received amount). Backward Compatibility: when not provided by callers not yet upgraded, the backend falls back on beneficiaryWallet ownership (first-party wallet → Debit, third-party wallet → Receive), matching legacy behavior. New integrations must provide this field.
feeBearer (integer, optional, default=1) — 1=Customer (borne by trading party), 2=Partner (borne by platform partner). Default behavior is unchanged.
Modified Fields
amount — meaning now depends on amountType (previously relied on implicit withdrawalType convention). See field description for details.
Response Data Additions
amountType, feeBearer (echoed from request)
debitAmount (string) — gross debit amount
receivedAmount (string) — net amount received by payee

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Body Params application/json

Example
{
    "participantCode": "B0100106",
    "currency": "USD",
    "amount": "420.45",
    "beneficiaryWalletLabel": "Ethereum Deposit Wallet",
    "purposeOfPayment": 7,
    "otherPurpose": "Cross-border trading settlement",
    "relationshipWithThirdParty": 8,
    "otherRelationship": "Business Partner",
    "fileProofOfTransfer": "550e8400-e29b-41d4-a716-446655440000",
    "fileIDOrPassport": "660e8400-e29b-41d4-a716-446655440001",
    "filePurposeOfRecurring": "770e8400-e29b-41d4-a716-446655440002"
}

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location '/v2.0/payment/crypto/createCryptoWithdrawal' \
--header 'Content-Type: application/json' \
--data '{
    "participantCode": "B0100106",
    "currency": "USD",
    "amount": "420.45",
    "beneficiaryWalletLabel": "Ethereum Deposit Wallet",
    "purposeOfPayment": 7,
    "otherPurpose": "Cross-border trading settlement",
    "relationshipWithThirdParty": 8,
    "otherRelationship": "Business Partner",
    "fileProofOfTransfer": "550e8400-e29b-41d4-a716-446655440000",
    "fileIDOrPassport": "660e8400-e29b-41d4-a716-446655440001",
    "filePurposeOfRecurring": "770e8400-e29b-41d4-a716-446655440002"
}'

Responses

🟢200Success
application/json
Bodyapplication/json

Example
{
    "code": 200,
    "msg": "success",
    "data": {
        "cryptoWithdrawalId": "WD2026072000290001",
        "withdrawalType": 1,
        "participantCode": "B0100348",
        "txHash": null,
        "currency": "USDT",
        "feeCurrency": null,
        "amount": "50.000000",
        "feeAmount": "3.000000",
        "debitAmount": "50.000000",
        "receivedAmount": "47.000000",
        "amountType": 1,
        "feeBearer": 1,
        "status": 1,
        "statusInfo": null,
        "beneficiaryWallet": {
            "blockchain": "ETH",
            "label": "usdt-out",
            "walletAddress": "0x742d35Cc6634C0532925a3b844Bc9e7595f0bEb7",
            "walletType": 1,
            "isOwner": true,
            "ownerInfo": {
                "details": {}
            }
        },
        "purposeOfPayment": 8,
        "otherPurpose": null,
        "relationshipWithThirdParty": 7,
        "otherRelationship": null,
        "fileProofOfTransfer": null,
        "fileIDOrPassport": null,
        "filePurposeOfRecurring": null,
        "kytInfo": {
            "kytType": 2,
            "kytResult": 1,
            "kytDetails": null
        },
        "createdAt": 1784478549000,
        "updatedAt": 1784478549000,
        "clientReference": null
    }
}
Modified at 2026-07-21 08:44:12
Previous
Remove Wallet Address
Next
Get Wallet Address
Built with