Getting Started
API Documentation
Everything you need to integrate with the HypeProxy.io API.
Introduction
The HypeProxy.io API lets you manage your proxies programmatically. You can rotate IP addresses, check response times, retrieve your current external IP, and access account information — all through simple REST endpoints.
- Base URL:
https://api.hypeproxy.io - Protocol: HTTPS only
- Authentication: JWT Bearer token
- Format: JSON responses
Quick Start
Get started in two steps:
- Copy your API token from your dashboard profile page.
- Make your first request:
curl https://api.hypeproxy.io/Utils/GetInformations \
-H 'Authorization: Bearer YOUR_API_TOKEN'
Available Endpoints
| Method | Endpoint | Description |
|---|---|---|
| GET | /Utils/DirectRenewIp/{proxyId} |
Rotate the IP address of a proxy |
| GET | /Utils/GetResponseTime/{proxyId} |
Get the response time of a proxy |
| GET | /Utils/GetExternalIp/{proxyId} |
Get the current external IP of a proxy |
| GET | /Utils/GetInformations |
Get your account information |
Authentication
All API requests require a valid JWT token passed in the Authorization header as a Bearer token. You can find your token in the HypeProxy.io dashboard.
{% see-also title="Authentication" href="/docs/authentication" /%}
Health Check
You can verify the API is operational by visiting the health check endpoint:
curl https://api.hypeproxy.io/health
You can also check our service status page for real-time uptime information.