Skip to main content
Dollr supports collecting in currencies that differ from your invoice or order currency (for example, invoice in USD, payer pays in LRD via mobile money). Predictions tell you the amounts before you execute; receipts show what actually settled.

Three amounts to track

ConceptWhere it appearsMeaning
Source totalInvoice/order currency + total_amountWhat you billed
Payer amountPrediction + execution + receiptWhat the customer pays (including fees if fee_bearer: PAYER)
Payee amountPrediction + execution + receiptWhat you receive after fees and FX

Fee bearer

Set on invoice/order create (PAYER or PAYEE):
  • PAYER — Customer pays platform/gateway fees on top of the source total
  • PAYEE — You absorb fees; customer pays the listed total
Preview with predictions before executing.

Which currency on execute?

For POST /v1/executions/collection, pass the currency the payer is paying in — typically the target_currency from your prediction, not necessarily the invoice currency. Example: Invoice USD 100, payer uses MTN MoMo in LRD:
  1. Call predictions with base_currency=USD, target_currency=LRD
  2. Use returned payer_currency / amounts to show the customer the LRD total
  3. Execute with "currency": "LRD" (payer currency)
curl "https://api.heydollr.app/v1/predictions/payment-source/amount-and-fees?source_type=INVOICE&source_id=101&target_currency=LRD&payment_method=MTN_MOMO_LBR&provider=PAWAPAY" \
  -H "Authorization: Bearer YOUR_ACCESS_TOKEN"
For a published source, payment-source/amount-and-fees uses the source total as the base — you only choose target_currency and payment routing.

Standalone amount prediction

When you know the base amount upfront:
curl "https://api.heydollr.app/v1/predictions/amount-and-fees?base_amount=100&base_currency=USD&target_currency=LRD&payment_method=MTN_MOMO_LBR&operation_type=COLLECTION&provider=PAWAPAY&fee_bearer=PAYER" \
  -H "Authorization: Bearer YOUR_ACCESS_TOKEN"
Response fields:
FieldDescription
payer_amount / payer_currencyCustomer pays
payee_amount / payee_currencyYou receive
platform_feeDollr platform fee
gateway_feeMoMo/card gateway fee
fx_feeFX conversion fee (if applicable)

Hosted checkout

On hosted checkout, Dollr handles currency selection and FX on the payment page. You still verify settlement via GET /v1/status/source or receipt endpoints.

Receipt reconciliation

After PAID, use:
GET /v1/invoices/receipt/{id}
Receipts include payer_amount, payee_amount, fx_rate, fx_currency_from, fx_currency_to, and fee breakdowns.
Last modified on June 23, 2026