Skip to main content
GET
/
wallet
/
balance
Get wallet balance
curl --request GET \
  --url https://api.proxyjam.com/public/v1/wallet/balance \
  --header 'X-API-Key: <api-key>'
{
  "wallet_id": "<string>",
  "balance": 123,
  "currency": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://docs.proxyjam.com/llms.txt

Use this file to discover all available pages before exploring further.

Returns the user’s current wallet balance. A wallet is created automatically on first access.

Response

wallet_id
string
UUID of the wallet.
balance
number
Current balance in USD.
currency
string
Always USD.

Example

curl https://api.proxyjam.com/public/v1/wallet/balance \
  -H "X-API-Key: pj_AbCdEf..."