On Ramp Quote

Convert fiat currency to cryptocurrency (e.g., BRL to BRZ via PIX).

Note: we currently only support BRL → BRZ on ramps at the moment.

Request a Quote

You can request a quote using an existing recipient ID or by passing the settlement details directly in the payload.

TypeScript
const quote = await orda.onRamp.requestQuote({
  fromCurrency: 'BRL',
  intent: {
    method: 'fromAmount',
    value: '100.00'
  },
  recipientId: 'recipient-id'
});

console.log('PIX Key:', quote.depositInstructions.pixKey);
console.log('Transaction ID:', quote.transactionId);

Deposit Instructions

The quote response includes PIX deposit details and a QR code formatted in Base64.

Get Status

Wait for Completion

Terminal Statuses

chevron-rightPossible terminal statuseshashtag
  • Completed - Crypto received

  • Failed - Transfer failed

  • Cancelled - Transfer cancelled

  • Refunded - Fiat returned

Last updated