For the complete documentation index, see llms.txt. This page is also available as Markdown.

Crypto Payment

Set Payment Method

When the payment transaction is to be completed using cryptocurrency, The payment_method field should be set to CRYPTO in the post request collection body. We expect you to provide a, redirect_url the customer will be navigated to when they complete or cancel the transaction.

{
  ...
  "method": "CRYPTO",
  "redirect_url": "https://your-redirect_url"
  ...
}

redirect_url

Once the payment has been initiated, the response body will contain the payment_url .

{
  ...
  "payment_url": "https://kitegateway.com/v1/collections/payment/387282737839923773737",
  ...
}

Redirect customer

We expect your application to redirect the customer to that payment_url to complete the payment

Last updated