For the complete documentation index, see llms.txt. This page is also available as Markdown.
Creating account transfer
POST/api/public/v1/transfers
Creates an instant transfer between two of your accounts in the same currency — between a master account and a subaccount, or between two subaccounts. The transfer produces two account transactions: a debit on the source account and a credit on the destination account.
Headers
Name
Value
Content-Type
application/vnd.api+json
Authorization
Bearer <api_key>
Body
Name
Type
Description
data
object
Request data object.
data.type
string
Resource type. Always transfers.
data.attributes
object
Transfer attributes.
data.attributes.from_account
string
ID of the account to debit.
data.attributes.to_account
string
ID of the account to credit. Must hold the same currency as the source account.
data.attributes.amount
number
Amount to transfer.
data.attributes.currency
string
Transfer currency. Must match the currency of both accounts.
data.attributes.reference
string
Your unique reference for this transfer. Included in downloadable CSV transaction reports.