Skip to main content
POST
/
wallets
/
withdraw
Withdraw from legacy receiving wallet
const options = {
  method: 'POST',
  headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
  body: JSON.stringify({to: '<string>', amount: '<string>', coin: 'USDC_E'})
};

fetch('https://api.prudra.dev/wallets/withdraw', options)
  .then(res => res.json())
  .then(res => console.log(res))
  .catch(err => console.error(err));
{}

Documentation Index

Fetch the complete documentation index at: https://docs.prudra.dev/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Your Prudra API key. Get one at dashboard.prudra.com/settings/api-keys

Body

application/json
to
string
required

Destination 0x address

amount
string
required

Decimal amount string

coin
enum<string>
default:USDC_E
Available options:
USDC_E,
USDC,
USDT

Response

202 - application/json

Withdrawal accepted / processing

The response is of type object.