🪙Crypto Deposit

Lazerpay as a payment infrastructure currently supports payment in 4 stablecoins. Our Crypto deposit API provides a unique wallet address (for each user) that supports any of our accepted stablecoins.

Introduction

To perform this particular activity, you would need to call the API that fetches you your unique deposit address. You can copy or note the address, and send funds to it anytime. The service is programmed to update your Lazerpay wallet with the correct amount whenever you send funds to that address.

The 4 stablecoins you can send to the wallet address provided for your business are listed below:

  1. USDT

  2. BUSD

  3. DAI

  4. USDC

Crypto deposit API

GET https://api.lazerpay.engineering/api/v1/crypto/funding/address

Query Parameters

Headers

{
  "message": "Crypto funding address retrieved successfully",
  "status": "success",
  "statusCode": 200,
  "data": {
    "address": "0x6e1ecbeaa974423caccf35a9186628f56667e74b"
  }
}
// Response
{
  "message": "Crypto funding address retrieved successfully",
  "status": "success",
  "statusCode": 200,
  "data": {
    "address": "0x6e1ecbeaa974423caccf35a9186628f56667e74b"
  }
}

Last updated