Skip to main content
POST
/
account-to-account-transfers
Create an account-to-account transfer
curl --request POST \
  --url https://api.venlyfinance.com/api/v1/account-to-account-transfers \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "sourceAccountId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "destinationAccountId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "amount": "<string>",
  "cryptocurrency": "USDC",
  "chain": "BASE"
}
'
{
  "success": true,
  "result": {
    "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "sourceAccountId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "destinationAccountId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "amount": "<string>",
    "cryptocurrency": "USDC",
    "status": "PENDING"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
sourceAccountId
string<uuid>
required
destinationAccountId
string<uuid>
required
amount
string
required
Pattern: ^\d+(\.\d{1,6})?$
cryptocurrency
enum<string>
required
Available options:
USDC,
EURC,
USDT
chain
enum<string>

Optional blockchain network. If not specified, defaults to the account's primary chain.

Available options:
BASE

Response

Account-to-account transfer created

success
boolean

Indicates whether the request was successful

result
object