Create quote

[POST] /api/v2/quote

Returns min and max order limits for a deposit and payout currency pair.

Request body type:

type RequestBody = {
  deposit: {
    paymentChannel: PaymentChannel;
    currencyType: CurrencyType;
    currencyCode: string;
    countryIsoCode?: string;
    amount?: number;
  };
  payout: {
    paymentChannel: PaymentChannel;
    currencyType: CurrencyType;
    currencyCode: string;
    countryIsoCode?: string;
    amount?: number;
  };
};

Request body example:

Response type:

Response example:

Last updated