How to Check Balance
Check your current account balance.
Endpoint
GET https://api.get3w.com/api/v3/balanceRequest
bash
curl "https://api.get3w.com/api/v3/balance" \
-H "Authorization: Bearer YOUR_API_KEY"python
import requests
response = requests.get(
"https://api.get3w.com/api/v3/balance",
headers={"Authorization": "Bearer YOUR_API_KEY"}
)
data = response.json()["data"]
print(f"Balance: ${data['balance']}")Response
json
{
"code": 200,
"message": "success",
"data": {
"balance": 42.50,
"currency": "USD",
"account_level": "Silver"
}
}Response Fields
| Field | Description |
|---|---|
balance | Current balance in USD |
currency | Currency code (always USD) |
account_level | Your current tier (Bronze/Silver/Gold/Ultra) |
Next Steps
- How to Check Usage — View usage statistics
- How to Check Billings — View billing history
- Account Levels — Tier details