REST API Reference

Programmatically manage your high-performance proxy infrastructure. Our REST API enables seamless integration for IP whitelisting, credential rotation, and real-time inventory monitoring across the HighProxies network.

Base URL: https://api.highproxies.com
Authentication: Pass your unique token in the X-API-KEY request header.

System Health

Monitor the operational status of the API gateway and backend clusters in real-time.

GET https://api.highproxies.com/health

Response Structure

{ "status": "ok", "checks": { "database": "up", "redis": "up" } }

Account Information

Access core profile details, service status, and available credit balances.

GET https://api.highproxies.com/client/v1/account/get-info
{ "account": { "id": 1, "firstname": "John", "lastname": "Doe", "email": "john.doe@example.com", "status": "Active", "credit": 105.50, "currency": 1 } }

Whitelist Management

Authorize specific IP addresses to access your proxy fleet. Changes propagate across the global network within seconds.

GET https://api.highproxies.com/client/v1/white-list/get-list

Current Authorizations

{ "total_services": 1, "whitelists": [ { "service_id": 111391, "authorized_ips": ["1.2.3.4", "5.6.7.8"] } ] }
POST https://api.highproxies.com/client/v1/proxies/update-ips

Update Request

{ "service_id": 111391, "ips": ["1.2.3.4", "8.8.8.8"] }

Proxy Inventory

Retrieve your active proxy list including IP, Port, and authentication credentials.

GET https://api.highproxies.com/client/v1/proxies/list
{ "total": 1, "proxies": [ { "proxy_id": 726290, "proxy_ip": "213.139.196.104", "proxy_port": 21290, "auth_mode": "user_pass", "user": "hp_user", "pass": "hp_pass" } ] }
POST https://api.highproxies.com/client/v1/proxies/switch-auth

Toggle between user_pass and ip_auth for all proxies.

{ "mode": "ip_auth" }

Audit History

Track the timeline of IP authorization changes for security compliance.

GET https://api.highproxies.com/client/v1/proxies/history
{ "history": [ { "service_id": 111391, "old_ips": "1.1.1.1", "new_ips": "1.2.3.4", "timestamp": "2026-04-23T14:30:12" } ] }

Legacy Support

The following endpoints are maintained for backward compatibility with older client integrations.

GET https://api.highproxies.com/proxies
POST https://api.highproxies.com/update-ips

Interactive Documentation

Test live requests directly from your browser using our interactive Swagger or ReDoc consoles.

Swagger Console

https://api.highproxies.com/docs

ReDoc UI

https://api.highproxies.com/redoc

© 2026 HighProxies Core Systems. Optimized for programmatic access on RockyLinux infrastructure.