Payment-Gateway-OpenApi
  1. Crypto Collection
Payment-Gateway-OpenApi
  • Getting Started
  • Fiat Collection
    • Overview
    • Pelago Cashier Mode
      • Cashier Mode Introduction
      • Create Pelago Order
    • Pelago Direct Mode
      • Direct Mode Introduction
      • Get Rate
      • Get Product
      • Create Order
      • Get Order Info
      • Order Notify
  • Crypto Collection
    • Overview
    • Create Order
      POST
    • Refund
      POST
    • Withdraw
      POST
  • Common Collection
    • Check Order Info
      POST
  1. Crypto Collection

Withdraw

POST
/openapi/crypto/withdraw

Request

Authorization
Header Params
X-App-Key
string 
required
Example:
{{merchant-app-key}}
Body Params application/json
data
object 
required
merchantId
string 
required
timestamp
string 
required
Match pattern:
^\d{13}$
nonce
string 
required
orders
array [object {4}] 
optional
signature
string 
required
Example
{
    "data": {
        "merchantId": "string",
        "timestamp": "string",
        "nonce": "string",
        "orders": [
            {
                "coinId": "string",
                "amount": 0,
                "address": "string",
                "remark": "string"
            }
        ]
    },
    "signature": "string"
}

Request 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 --request POST 'http://prod-cn.your-api-server.com/openapi/crypto/withdraw' \
--header 'X-App-Key: {{merchant-app-key}}' \
--header 'Content-Type: application/json' \
--data-raw '{
    "data": {
        "merchantId": "string",
        "timestamp": "string",
        "nonce": "string",
        "orders": [
            {
                "coinId": "string",
                "amount": 0,
                "address": "string",
                "remark": "string"
            }
        ]
    },
    "signature": "string"
}'

Responses

🟢200OK
*/*
OK
Body
code
string 
required
data
object 
required
withdrawOrderIds
array[string]
required
msg
string 
required
Example
{
    "code": "string",
    "data": {
        "withdrawOrderIds": [
            "string"
        ]
    },
    "msg": "string"
}
Modified at 2025-06-13 07:27:50
Previous
Refund
Next
Check Order Info
Built with