/accountAccount
Your wallet balance, your rate for every plan, and how many proxies you currently hold.
curl -H "Authorization: Bearer $KEY" \
https://whitecloakproxy.com/api/reseller/v1/account{
"success": true,
"name": "Partner Site",
"balance_cents": 130000,
"price_per_proxy_cents": 7350,
"commission_pct": 25,
"pricing": [
{ "duration": "daily", "days": 1, "price_cents": 600, "retail_cents": 800 },
{ "duration": "3day", "days": 3, "price_cents": 1500, "retail_cents": 2000 },
{ "duration": "weekly", "days": 7, "price_cents": 2625, "retail_cents": 3500 },
{ "duration": "biweekly", "days": 14, "price_cents": 4500, "retail_cents": 6000 },
{ "duration": "monthly", "days": 30, "price_cents": 7350, "retail_cents": 9800 }
],
"pricing_by_carrier": {
"T-Mobile": [ /* same shape, that carrier's exact rates */ ],
"Verizon": [ /* ... */ ]
},
"active_proxies": 12,
"max_active_proxies": null,
"billing_mode": "wallet"
}- ◆Read your prices from here rather than hardcoding them. price_cents is what you pay; retail_cents is our public price it was derived from.
- ◆commission_pct is the share of retail you keep — every plan is priced as retail x (100 - commission_pct) / 100, so if our retail moves your rate follows and your margin holds. Fixed-rate accounts have commission_pct: null and one price for all plans.
- ◆pricing is the rate when a purchase names no carrier — such an order can be filled from any carrier, so it's priced at the highest carrier rate for that plan. Name a carrier to get the exact rate in pricing_by_carrier.
- ◆price_per_proxy_cents is kept for older integrations and equals the monthly, any-carrier rate.
- ◆All prices everywhere in this API are US cents — 7350 means $73.50.
- ◆Watch balance_cents and top up with us before it runs low; purchases fail cleanly with 402 when it can't cover them.
- ◆billing_mode is either "wallet" (the default, prepaid balance above) or "card" (pay-per-order — see the Purchase endpoint's card billing note). Card accounts always report balance_cents: null here and add a card block: { "last4": "4113", "brand": "VISA" }.