Skip to main content
POST
/
api
/
v1
/
balance
/
payout
/
quote
/
dry_run
Estimate payout quote
curl --request POST \
  --url https://api.hevn.finance/api/v1/balance/payout/quote/dry_run \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "amount": 123
}'
{
  "currencyTo": "<string>",
  "amountTo": 123,
  "fee": 123,
  "fixedFee": 123
}

Authorizations

Authorization
string
header
default:Bearer <token>
required

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

Headers

x-api-key
string | null

Body

application/json

Request for approximate payout quote without contact.

amount
number
required
rail
string | null
type
string | null
tokenTo
string | null
chainTo
string | null

Response

Successful Response

Approximate payout quote response without provider-side activation.

currencyTo
string
required
amountTo
number
required
fee
number | null
fixedFee
number | null