Skip to main content
POST
/
transfer
Transfer
curl --request POST \
  --url https://processor-prod.up.railway.app/transfer \
  --header 'Content-Type: application/json' \
  --header 'x-service-key: <api-key>' \
  --data '{
  "wallet_id": "68bb7d8399900e253084e6f9",
  "amount": 100,
  "receiver": "0x4ad21FA456Bb297f505B2718ba87ad63D8a95E6B",
  "asset": "bsc:usdt"
}'
{
  "success": true,
  "status": 200,
  "message": "Transfer initiated successfully",
  "timestamp": "2025-09-09T20:42:10.316Z",
  "data": {
    "hash": "0x8e935237667da1a673ea84cdaf1750ef9dddb125e075d20657f38b5223674da8",
    "link": "https://blockscan.com/tx/0x8e935237667da1a673ea84cdaf1750ef9dddb125e075d20657f38b5223674da8"
  }
}

Authorizations

x-service-key
string
header
required

Body

application/json
wallet_id
string
required

The wallet ID to transfer from

Example:

"68bb7d8399900e253084e6f9"

amount
number
required

Amount to transfer.

Use -1 to transfer all available balance.

Example:

100

receiver
string
required

The recipient address

Example:

"0x4ad21FA456Bb297f505B2718ba87ad63D8a95E6B"

asset
enum<string>
required

The asset to transfer

Available options:
ethereum:usdc,
base:usdc,
arbitrum:usdc,
solana:usdc,
bsc:usdc,
polygon:usdc,
optimism:usdc,
avalanche:usdc,
ethereum:usdt,
arbitrum:usdt,
solana:usdt,
polygon:usdt,
bsc:usdt,
optimism:usdt,
avalanche:usdt,
base:cngn,
bsc:cngn
Example:

"bsc:usdt"

Response

200 - application/json

Transfer initiated successfully

success
boolean
Example:

true

status
integer
Example:

200

message
string
Example:

"Transfer initiated successfully"

timestamp
string<date-time>
Example:

"2025-09-09T20:42:10.316Z"

data
object
I