Skip to content

How to Check Balance

Check your current account balance.

Endpoint

GET https://api.get3w.com/api/v3/balance

Request

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

FieldDescription
balanceCurrent balance in USD
currencyCurrency code (always USD)
account_levelYour current tier (Bronze/Silver/Gold/Ultra)

Next Steps

Released under the MIT License.