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

# Quotes

> Retrieve available quotes.

The Quotes module retrieves quotes for payin and payout operations.

## Retrieve Quotes

```http theme={null}
GET /v2/quotes
```

### Query Parameters

| Parameter          | Required | Values                                                    |
| ------------------ | -------- | --------------------------------------------------------- |
| `pair`             | No       | `USDC/BOB`, `BOB/USDC`, `USDT/BOB`, `BOB/USDT`            |
| `transaction_type` | No       | `withdrawal_express`, `deposit_express`, `withdrawal_ach` |

### Example

```http theme={null}
GET /v2/quotes?pair=USDC/BOB&transaction_type=withdrawal_express
```

### Response

```json theme={null}
[
  {
    "transactionType": "withdrawal_express",
    "pair": "USDC/BOB",
    "serviceExchangeRate": 6.96,
    "partnerExchangeRate": 6.96,
    "partnerPctFee": 0.5,
    "timeStamp": "2026-05-12T12:00:00.000Z"
  }
]
```

## Recommendation

Retrieve a quote before starting a payin or payout flow when you need to show the applicable exchange rate to the end user.
