Quick Start Guide
FreshGet started with the Proxidize API in under 5 minutes.
Prerequisites
- Proxidize server running and accessible
- API token from Dashboard Settings
- Proxidize Essential, Plus, or Business plan
Step 1: Get Your API Token
- Log into your Proxidize dashboard
- Navigate to Settings > API Token
- Copy your API token
Keep Your Token Secure
Never share your API token publicly. Treat it like a password.
Step 2: Test Authentication
Make your first API call to verify authentication:
bash
curl -H "Authorization: Token YOUR_API_TOKEN" \
http://YOUR_SERVER_IP/api/getinfoExpected response: JSON object with all modem information.
Step 3: Rotate a Proxy
Rotate the IP address of a specific modem:
bash
curl -H "Authorization: Token YOUR_API_TOKEN" \
http://YOUR_SERVER_IP/api/change_ip?index=1Step 4: Check Modem Status
Get information about all connected modems:
bash
curl -H "Authorization: Token YOUR_API_TOKEN" \
http://YOUR_SERVER_IP/api/getinfoCommon Operations
Next Steps
- Authentication Details - Deep dive into authentication
- Proxy Rotation - All rotation options
- API Endpoints - Complete reference