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
}

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

Response

200 - application/json

Successful response

The response is of type object.