> ## Documentation Index
> Fetch the complete documentation index at: https://docs.bluvo.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# quotation.error

> Sent when a withdrawal quote fails

## quotation.error

Fired when Bluvo is unable to generate a withdrawal quote, typically due to validation failures or exchange-side errors.

### When this event is sent

* The requested amount is below the exchange's minimum withdrawal threshold
* The exchange rejects the quote request (insufficient funds, asset not supported, etc.)
* An unexpected error occurs during the quoting process

### Payload

```json Example payload theme={null}
{
  "event": "quotation.error",
  "eventId": "wal_abc123-quotation-error-1713700800000",
  "timestamp": "2026-04-21T12:00:00.000Z",
  "data": {
    "error": {
      "code": "QUOTE_BELOW_MINIMUM",
      "message": "Amount is below the minimum withdrawal threshold"
    },
    "quotation": {
      "walletId": "wal_abc123",
      "asset": "BTC",
      "amount": "0.000001",
      "address": "bc1qxy2kgdygjrsqtzq2n0yrf2493p83kkfjhx0wlh",
      "network": "Bitcoin"
    }
  }
}
```

### Fields

| Field                     | Type                  | Description                                                                   |
| ------------------------- | --------------------- | ----------------------------------------------------------------------------- |
| `data.error.code`         | `string`              | Standardized error code (e.g., `QUOTE_BELOW_MINIMUM`, `QUOTE_EXCHANGE_ERROR`) |
| `data.error.message`      | `string`              | Human-readable error description                                              |
| `data.quotation.walletId` | `string`              | Wallet the quote was requested for                                            |
| `data.quotation.asset`    | `string`              | Asset ticker                                                                  |
| `data.quotation.amount`   | `string`              | Requested withdrawal amount                                                   |
| `data.quotation.address`  | `string`              | Requested destination address                                                 |
| `data.quotation.network`  | `string \| undefined` | Requested network                                                             |

<Info>
  Error codes are standardized across the Bluvo platform. See the [error handling guide](/learn/sdk/error-handling) for the full list.
</Info>
