Getting Started with Proxy APIs
The HypeProxy.io API lets you manage your proxies programmatically. This guide walks you through making your first API calls.
Prerequisites
- An active HypeProxy.io account with at least one proxy.
- Your API token (found in your dashboard profile page).
Base URL
All API requests use the following base URL:
https://api.hypeproxy.io
Authentication
Include your JWT token in the Authorization header:
curl https://api.hypeproxy.io/Utils/GetInformations \
-H 'Authorization: Bearer YOUR_API_TOKEN'
Available Endpoints
| Endpoint | Description |
|---|---|
GET /Utils/DirectRenewIp/{proxyId} |
Rotate the IP address |
GET /Utils/GetResponseTime/{proxyId} |
Check proxy latency (ms) |
GET /Utils/GetExternalIp/{proxyId} |
Get current external IP |
GET /Utils/GetInformations |
Get account information |
Step-by-Step Example
1. Get your account info
curl https://api.hypeproxy.io/Utils/GetInformations \
-H 'Authorization: Bearer YOUR_API_TOKEN'
2. Check your proxy's current IP
curl https://api.hypeproxy.io/Utils/GetExternalIp/YOUR_PROXY_ID \
-H 'Authorization: Bearer YOUR_API_TOKEN'
3. Rotate the IP
curl https://api.hypeproxy.io/Utils/DirectRenewIp/YOUR_PROXY_ID \
-H 'Authorization: Bearer YOUR_API_TOKEN'
4. Verify the new IP
curl https://api.hypeproxy.io/Utils/GetExternalIp/YOUR_PROXY_ID \
-H 'Authorization: Bearer YOUR_API_TOKEN'
5. Monitor performance
curl https://api.hypeproxy.io/Utils/GetResponseTime/YOUR_PROXY_ID \
-H 'Authorization: Bearer YOUR_API_TOKEN'
Finding Your Proxy ID
Your proxy ID is available in the HypeProxy.io dashboard. Navigate to your proxy details page to find the identifier.
Health Check
Verify the API is operational:
curl https://api.hypeproxy.io/health
Next Steps
- Read the full API documentation for detailed endpoint information.
- Check out the Python integration guide for code examples.
- Learn about API authentication in depth.