🍭Wallet Balance

With this endpoint you can programmatically get your lazerpay wallet balance by specific the coin.

Get wallet balance

Using this endpoint, you can programmatically get wallet balance by specific the coin.

GET https://api.lazerpay.engineering/api/v1/wallet/balance

Query Parameters

NameTypeDescription

coin*

String

The coin balance you want to get, eg USDT, DAI, BUSD, USDC

Headers

NameTypeDescription

Authorization*

string

Bearer YOUR_SECRET_KEY

{
  "message": "Balance retrieved successfully",
  "status": "success",
  "statusCode": 200,
  "data": {
    "coin": "USDT",
    "amount": 100
  }
}

Last updated