Skip to main content

Check Balance

Retrieve your current account balance.

GET /api/v2/balance

Authentication

Authorization: Bearer sl_live_your_key_here

Example request

curl "https://api.sendlime.com/api/v2/balance" \
-H "Authorization: Bearer sl_live_your_key_here"

Success response

Status: 200 OK

{
"success": true,
"data": {
"balance": 150.0,
"currency": "BDT"
}
}

Response fields

FieldTypeDescription
balancenumberYour current account balance
currencystringCurrency code (always "BDT")

Error response

401 Unauthorized

{ "error": "Invalid or revoked API key" }