| name | pg-status |
| description | Use when checking Proxygate status — balance, usage, listings, tunnel health, earnings, seller profile. Make sure to use this skill whenever someone mentions "check balance", "proxygate status", "my usage", "my earnings", "what's my balance", "how much have I spent", "my listings", "settlement history", or wants any kind of status overview. |
| metadata | {"openclaw":{"requires":{"bins":["proxygate"]},"homepage":"https://proxygate.ai"}} |
Proxygate Status
Quick status checks for buyers and sellers.
Buyer status
proxygate balance
proxygate usage
proxygate usage -s weather-api -l 10
proxygate usage --from 2026-03-01 --json
proxygate settlements -r buyer
proxygate settlements -s maps-api --from 2026-03-01
Seller status
proxygate listings list
proxygate listings list --table
proxygate listings docs <id>
proxygate settlements -r seller
proxygate settlements --from 2026-03-01 --to 2026-03-14
proxygate balance
Auth status
proxygate whoami
Shows which auth method is active (API key, delegation token, or keypair) and when delegation tokens expire.
SDK
import { ProxygateClient } from '@proxygate/sdk';
const client = await ProxygateClient.create({
apiKey: 'pg_live_abc123...',
});
const { balance, available, pending_settlement } = await client.balance();
const usage = await client.usage({ service: 'weather-api', limit: 10 });
const settlements = await client.settlements({ role: 'seller', from: '2026-03-01' });
const { listings } = await client.listings.list();
Troubleshooting
| Symptom | Check |
|---|
| Balance 0 | Deposit: proxygate deposit -a <amount> (keypair) or via dashboard (API key) — see pg-buy |
| Proxy returns 503 | Listing paused or seller tunnel down |
| "Unauthorized" | Run proxygate login to reconfigure — see pg-setup |
| "Delegation token expired" | Run proxygate login again (WalletConnect) |
| Tunnel disconnects | Check proxygate dev logs, verify local port is open |
| Gateway unreachable | Verify URL: https://gateway.proxygate.ai |
Related skills
| Need | Skill |
|---|
| First-time setup | pg-setup |
| Buy API access | pg-buy |
| Sell API capacity | pg-sell |
| Check status | This skill |
| Update CLI/SDK | pg-update |