Quotes

Preview sender and receiver values before starting a payout.

What is a quote?

A quote will show you how much you or your customers need to send in stablecoins and how much the receiver is going to receive in fiat.

So, let's say you want to send 1,000 USDC to a receiver with a bank account in the United States. The quote will show that you need to send 1,000 USDC and the receiver will receive $990.

Who are going to pay for the fees?

BlindPay provides two ways of paying for the fees:

  1. The receiver pays the fees: In this case, the fees are calculated based on the fiat currency (USD, BRL) that the receiver is going to receive.
  2. The sender pays the fees: In this case, the fees are calculated based on the stablecoins (USDC) that the sender is going to send.

Receiver paying for the fees

This is the most common scenario, so just keep the Cover all payout fees disabled and the fees will be calculated to the receiver.

BlindPay receiver paying for the fees

Sender paying for the fees

This scenario is particularly relevant when running payroll. In this case, you should enable the Cover all payout fees option before creating the quote.

BlindPay receiver paying for the fees

Creating a quote

You can check the required fields in the BlindPay API Docs.

Before creating a quote through the API, you need to:

  1. Create an account on BlindPay
  2. Create a development instance
  3. Create your API key
  4. Create a receiver
  5. Create a bank account
cURL
curl --request POST \
  --url https://api.blindpay.com/v1/instances/in_000000000000/quotes \
  --header 'Authorization: Bearer YOUR_SECRET_TOKEN' \
  --header 'Content-Type: application/json' \
  --data '{
  "bank_account_id": "ba_000000000000",
  "currency_type": "sender",
  "cover_fees": false,
  "request_amount": 1000,
  "network": "sepolia",
  "token": "USDC"
}'