ProxioDocs
API Reference

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

FieldTypeNotes
user.idstringYour account id, an opaque string.
user.emailstring | nullAccount email, or null if none is set.
user.created_atstringAccount creation time (ISO 8601 UTC).
wallet.currencystringAlways USD in v1.
wallet.balancestringSigned decimal string, e.g. "42.50".
totals.active_servicesnumberServices that are active and not expired.
totals.total_servicesnumberAll services, active or not.
totals.active_credentialsnumberActive 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.

On this page