Install
openclaw skills install query-payful-accountQuery Payful account information including balance, transactions, and account details. Use when the user needs to check their Payful account status, view balance, or retrieve account information. Requires PAYFUL_TOKEN and PAYFUL_USER_ID environment variables to be set.
openclaw skills install query-payful-accountThis skill queries Payful account information via the Payful API.
Security notice:
PAYFUL_TOKENandPAYFUL_USER_IDare sensitive browser session cookies extracted from global.payful.com. They grant full access to your Payful account. Only set these values in a trusted environment and never share them.
Set the following environment variables:
PAYFUL_TOKEN - Authentication token (from BF-INTERNATIONAL-MEMBER-TOKEN cookie)PAYFUL_USER_ID - User ID (from AGL_USER_ID cookie)python scripts/query_balance.py
If using a different Payful environment:
python scripts/query_balance.py --api-url https://other.payful.com
The skill uses the following Payful API endpoints:
https://global.payful.com/api/user/account/queryUserAccBalByHomePageAccept: application/json, text/plain, */*Accept-Language: zh-CNrequest-system-name: member-exchange-clientCookie: Contains authentication tokens{
"code": "0000",
"data": {
"totalBalance": "1234.56",
"currency": "USD",
"availableBalance": "1200.00",
"frozenBalance": "34.56"
},
"message": "success"
}