Direct Wallet Transfer

Transfer funds directly between your wallets.

Endpoint

POST /api/transfers/wallet

Request Body

ParameterTypeRequiredDescription
from_wallet_idstringYesSource wallet identifier
to_wallet_idstringYesDestination wallet identifier
amountnumberYesTransfer amount
currencystringYesCurrency code
descriptionstringNoTransfer description

Response

Returns the transfer object.
{
  "id": "transfer_123456789",
  "type": "wallet_transfer",
  "from_wallet_id": "wallet_123456789",
  "to_wallet_id": "wallet_987654321",
  "amount": 100.00,
  "currency": "USD",
  "description": "Internal transfer",
  "status": "completed",
  "created_at": "2023-01-01T00:00:00Z"
}