Account
Read your Proxio profile, wallet balance, and service totals in one call with GET /account. Includes cURL, Python, and Node.js examples.
GET /account returns your profile, wallet balance, and a few headline
totals in a single call. It's the simplest way to confirm a key works and to
render an account summary.
Scope: read
Get your account
curl https://dashboard.proxio.net/api/v1/account \
-H "Authorization: Bearer pxo_9fJ2kQ7xR4mN8pL1dW6vB3cH5tZ0aYqS7dK2mN9x"import requests
BASE = "https://dashboard.proxio.net/api/v1"
API_KEY = "pxo_9fJ2kQ7xR4mN8pL1dW6vB3cH5tZ0aYqS7dK2mN9x"
resp = requests.get(
f"{BASE}/account",
headers={"Authorization": f"Bearer {API_KEY}"},
timeout=15,
)
resp.raise_for_status()
print(resp.json()["data"])const BASE = "https://dashboard.proxio.net/api/v1"
const API_KEY = "pxo_9fJ2kQ7xR4mN8pL1dW6vB3cH5tZ0aYqS7dK2mN9x"
const res = await fetch(`${BASE}/account`, {
headers: { Authorization: `Bearer ${API_KEY}` },
})
const { data } = await res.json()
console.log(data)200 response:
{
"data": {
"user": {
"id": "clx_9a2f",
"email": "[email protected]",
"created_at": "2026-01-02T10:00:00.000Z"
},
"wallet": {
"currency": "USD",
"balance": "42.50"
},
"totals": {
"active_services": 3,
"total_services": 7,
"active_credentials": 5
}
},
"meta": { "request_id": "req_8Ke2jP4mQ" }
}Fields
| Field | Type | Notes |
|---|---|---|
user.id | string | Your account id, an opaque string. |
user.email | string | null | Account email, or null if none is set. |
user.created_at | string | Account creation time (ISO 8601 UTC). |
wallet.currency | string | Always USD in v1. |
wallet.balance | string | Signed decimal string, e.g. "42.50". |
totals.active_services | number | Services that are active and not expired. |
totals.total_services | number | All services, active or not. |
totals.active_credentials | number | Active proxy credentials across all services. |
Money is a string
Balances and amounts are decimal strings, not floats, so you never lose precision to binary rounding. Parse them with a decimal type.
Related pages
Versioning & Stability
The Proxio API v1 stability policy. The v1 surface is additive-only, breaking changes require a new major version and 12 months notice via a Sunset date, an RFC 9745 Deprecation header, and a Link rel=deprecation, and every response carries X-Proxio-Api-Version.
API Keys
Manage Proxio API keys programmatically with GET/POST /api-keys and DELETE /api-keys/{id}. A key can only mint a key that is weaker than or equal to itself, the plaintext token is returned exactly once, and expiry, rate limit, and IP allowlist all clamp to the calling key's own values.

