---
title: Transfer Quote
description: Preview cross-chain stablecoin conversion rates and fees before executing a transfer with the BlindPay API.
beta: true
---

## What it is

A transfer quote shows how much you'll send in stablecoins on one blockchain and how much you'll receive in stablecoins on another blockchain. For example, you can send **USDT on Polygon** and receive **USDC on Base**, with the quote previewing exact amounts and fees before you execute the transfer.

## How it works

While this feature is in beta, only same-token and same-network transfers are supported.

::c-alert{icon="circle-info"}
**Tip**: the `customer_wallet_address` can be another wallet you created or an external wallet address.
::

## Prerequisites

::c-prerequisites
::

You also need a [customer](/docs/essentials/customers#create-a-customer) and a [wallet](/docs/essentials/wallets).

## Create a transfer quote

::c-auth-note
::

::c-code-group

```bash [cURL]
curl https://api.blindpay.com/v1/instances/in_000000000000/transfer-quotes \
  --request POST \
  --header 'Content-Type: application/json' \
  --header 'Authorization: Bearer YOUR_SECRET_TOKEN' \
  --data '{
  "wallet_id": "bl_000000000000",
  "amount_reference": "sender",
  "cover_fees": true,
  "request_amount": 1000,
  "sender_token": "USDC",
  "customer_wallet_address": "0xDD6a3aD0949396e57C7738ba8FC1A46A5a1C372C",
  "customer_token": "USDC",
  "customer_network": "polygon",
  "partner_fee_id": "pf_000000000000"
}'
```

::

## Related

- [Wallets](/docs/essentials/wallets) · [Customers](/docs/essentials/customers)
- [Payout Quotes](/docs/essentials/payout-quotes) · [Payin Quotes](/docs/essentials/payin-quotes)
