API Reference

Onramp widget

The Onramp Widget allows end-users to pay in fiat, while the merchant receives the funds in cryptocurrency directly into their Calypso account. It is designed for easy integration into the merchant's website or product, enabling payments via cards and other supported methods.

The widget is launched via a URL like:

https://pay.calypso.finance/onramp?**account**={0xf54aa3ec1f12a4eb3c8bf565078b371f3736f434}&**idempotencyKey**={2193a314-c7e7-41b5-b72e-e44833c12363}&**currency**={USDT}&**merchantExternalId**={dee72a7a-0e6d-4e7d-baf0-e7bf02a895d0}.

Параметры

ParameterDescriptionRequired
accountMerchant account identifier in CalypsoYes
idempotencyKeyUnique request ID to prevent duplicatesYes
currencyCryptocurrency in which the merchant wants to receive fundsYes
merchantExternalIdOptional external ID from the merchant system (e.g. userId or orderId)No
amountCrypto amountNo

User Flow:

  1. Select payment currency.
    The cryptocurrency in which the merchant will receive funds is passed in the currency parameter.
  2. Enter amount.
    The user enters the amount in fiat (or crypto equivalent), subject to provider limits.
  3. Choose a payment method.
    The user selects a preferred payment method (e.g., card, Apple Pay, etc.).
  4. Confirm and pay.
    After confirming, the user completes the payment, and the crypto is automatically credited to the merchant's Calypso account.

Callback Description

postMessage Events
The widget uses postMessage to send order state updates to the parent window.

States:

  • unpaid – Order created, awaiting payment
"orderId": "string", "merchantExternalId": "string", "state": "unpaid", "currency": "string", "orderCryptoAmount": 0, "fiatCurrency": "ARS", "orderFiatAmount": 0
  • paid – Order successfully paid
"orderId": "string", "merchantExternalId": "string" "state": "unpaid", "currency": "string", "orderCryptoAmount": 0, "paymentCryptoAmount": 0, "fiatCurrency": "ARS", "orderFiatAmount": 0, "paymentFiatAmount": 0
  • expired – Order not paid, expired
"orderId": "string", "merchantExternalId": "string", "state": "expired"

Webhooks

  • Webhook FIAT_APPLIER_ORDER_CREATED

Triggered when a new fiat order is created.

ParameterDescription
parentExternalIdExternal identifier
idempotencyKeyUnique key to prevent duplicates
currencyCrypto currency of the order
amountInCryptoAmount in crypto
fiatCurrencyFiat currency of the order
fiatAmountOrder amount in fiat
rateExchange rate used
  • Webhook FIAT_APPLIER_FIAT_FUNDS_RECEIVED

Triggered when fiat funds are successfully received.

ParameterTypeDescription
parentExternalIdnumberSystem ID of the fiat order
idempotencyKeystringExternal ID from the order creation
fiatAmountstringActual fiat amount received
fiatCurrencystringFiat currency used
ratenumberExchange rate used for the order
  • Webhook FIAT_APPLIER_ORDER_UNPAID
ParameterTypeDescription
parentExternalIdnumberSystem ID of the fiat order
idempotencyKeystringExternal ID from the order creation
reasonTypestringReason for expiration: "EXPIRED"