Arcanum pay
  1. Operation
Arcanum pay
  • GETTING STARTED
    • Documentation Overview
    • How to Get API Keys
    • Currencies and Networks
    • Request Authorization
  • API REFERENCE V1
    • Operation
      • Create Deposit
        POST
      • Create Withdrawal
        POST
      • Get Transaction By Id
        GET
    • Balance
      • Get Project Balance
    • Currency
      • Get Available Currencies
    • Wallets
      • Get Static Wallet
    • Callbacks
      • Verify Callback
  1. Operation

Create Withdrawal

POST
/api/v1/operation/create-withdrawal

Request

Header Params

Body Params application/json

Examples

Responses

🟢201Created
application/json
Body

🟠404Record Not Found
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api.arcanumpay.com/api/v1/operation/create-withdrawal' \
--header 'project-id;' \
--header 'api-key;' \
--header 'Content-Type: application/json' \
--data-raw '{
    "externalId": "297a6447-f1d4-4a0a-93da-4cc303c3f6d4",
    "amount": "100.00",
    "commissionType": 0,
    "additionalInfo": "23r32r2rf2efffwe",
    "currency": "TON",
    "cryptoNetwork": 2,
    "callbackUrl": "https://callback.com",
    "toAddress": "0xefwefw23rfwfewfewfewrf"
}'
Response Response Example
201 - Example 1
{
    "success": true,
    "data": {
        "id": "9ff76348-fc61-4480-aa0e-87a1fe081b19",
        "externalId": "7720a08a-0e38-401e-901a-f50f5190a69c",
        "toAddress": "0x23fefefe43fer",
        "fromAddress": "0xefeferfeffef4efr",
        "amount": "100",
        "payerCurrency": "TON",
        "cryptoNetwork": 2,
        "status": 1
    },
    "error": null
}
Modified at 2025-09-13 18:58:17
Previous
Create Deposit
Next
Get Transaction By Id
Built with