POST
/
transfer
/
withdraw
curl --request POST \
  --url https://staging-api.getpartna.com/v4/transfer/withdraw \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --header 'x-api-user: <api-key>' \
  --data '{
  "address": "0xA0b86991c6218b36c1d19D4a2e9eb0cE3606eB48",
  "amount": 2,
  "currency": "USDC",
  "transactionReference": "reference1",
  "fromAccount": "user1",
  "network": "ethereum",
  "type": "crypto"
}'
{
  "message": "request completed"
}

Authorizations

x-api-key
string
header
required
x-api-user
string
header
required

Body

application/json
address
string
amount
number
currency
enum<string>
Available options:
BNB,
BTC,
ETH,
USDC,
USDT,
CUSD
transactionReference
string
fromAccount
string
network
enum<string>
Available options:
avalanche,
binance,
bitcoin,
celo,
ethereum,
polygon,
tron
type
enum<string>
Available options:
crypto,
fiat

Response

200
application/json
withdrawal request successfully submitted
message
string