Skip to main content
POST
/
transfer
/
execute
Execute transfer
curl --request POST \
  --url https://api.zet.money/v1/transfer/execute \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "quoteId": "qt_01H8X6...",
  "walletId": "wal_01H8X3...",
  "sourceAddress": "<string>",
  "reference": "transfer_001",
  "callbackUrl": "<string>"
}
'
{
  "success": true,
  "data": {
    "transactionId": "txn_01H8X6...",
    "reference": "transfer_001",
    "status": "pending",
    "transactionHash": "0xabc...",
    "approvalData": {
      "to": "<string>",
      "data": "<string>",
      "value": "<string>"
    },
    "transactionData": {
      "to": "<string>",
      "data": "<string>",
      "value": "<string>",
      "gasLimit": "<string>"
    }
  }
}

Authorizations

x-api-key
string
header
required

Your Zet API key. Contact zetdotmoney@gmail.com to obtain your keys.

Body

application/json
quoteId
string
required
Example:

"qt_01H8X6..."

walletId
string

Zet wallet to send from (custodial).

Example:

"wal_01H8X3..."

sourceAddress
string

External wallet address (non-custodial). User must sign the returned transaction data.

reference
string
Example:

"transfer_001"

callbackUrl
string<uri>

Response

Transfer initiated.

success
boolean
Example:

true

data
object