Skip to main content
POST
/
v0
/
wallet
/
withdraw
/
quote
Quotation
curl --request POST \
  --url https://api-bluvo.com/v0/wallet/withdraw/quote \
  --header 'Content-Type: application/json' \
  --header 'x-bluvo-api-key: <api-key>' \
  --header 'x-bluvo-org-id: <api-key>' \
  --header 'x-bluvo-project-id: <api-key>' \
  --header 'x-bluvo-wallet-id: <api-key>' \
  --data '{
  "asset": "<string>",
  "amount": "<string>",
  "address": "<string>",
  "network": "<string>",
  "tag": "<string>",
  "includeFee": true
}'
{
  "id": "quote_01H9X3Z7N5V2KJ4G8P6QR5T3Y2",
  "asset": "BTC",
  "amountWithFee": 0.0012,
  "amountNoFee": 0.001,
  "destinationAddress": "bc1qar0srrr7xfkvy5l643lydnw9re59gtzzwf5mdq",
  "network": "bitcoin",
  "tag": null,
  "estimatedFee": 0.0002,
  "estimatedTotal": 0.0012,
  "expiresAt": 1713984000,
  "feeDetails": [
    {
      "category": "exchange_withdrawal_fee",
      "currency": "BTC",
      "amount": 0.000025,
      "amountInFiat": 1,
      "fiatCurrency": "USD"
    },
    {
      "category": "network_fee",
      "currency": "BTC",
      "amount": 0.0001,
      "amountInFiat": 3.65,
      "fiatCurrency": "USD"
    }
  ]
}

Authorizations

x-bluvo-api-key
string
header
required

Bluvo API Key

x-bluvo-org-id
string
header
required

Bluvo Organization ID

x-bluvo-project-id
string
header
required

Bluvo Project ID

x-bluvo-wallet-id
string
header
required

Bluvo Wallet ID

Body

application/json
asset
string
required
amount
string
required
address
string
required
includeFee
boolean
default:true
required
network
string
tag
string

Response

Successful response

id
string
required
asset
string
required
destinationAddress
string
required
expiresAt
string
required
amountWithFee
number | null
amountNoFee
number | null
estimatedFee
number | null
amountWithFeeInFiat
number | null
amountNoFeeInFiat
number | null
estimatedFeeInFiat
number | null
network
string | null
tag
string | null
estimatedTotal
number
feeDetails
object[]
I