Skip to main content
POST
/
payouts
Create payout (transaction)
curl --request POST \
  --url https://api.sandbox1-dev.finhost.io/crypto-transfer/payouts \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "accountId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "network": "<string>",
  "amount": "<string>",
  "recipient": {
    "address": "<string>"
  }
}
'
{
  "transaction": {
    "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
  }
}

Authorizations

Authorization
string
header
required

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

Query Parameters

companyId
string<uuid>

Company ID

Body

application/json
accountId
string<uuid>
required

Account ID

network
string
required

Network

Examples:

"ethereum"

"bitcoin"

"tron"

"arbitrum"

amount
string
required

Amount

Required string length: 1 - 36
Examples:

"42"

"4.2"

"4.20"

recipient
object
required

Response

200 - application/json

OK

transaction
object
required