Create quote

[POST] /api/v2/quote

Generates a qoute that can be used for an order creation

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