Create Proxy
Create a new proxy for a specific plan.
POST/proxies/create
Body Parameters
Security
Authorization
stringrequiredJWT Bearer token
Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...
Request Body
plan_id
integerrequiredID of the plan to create the proxy for
const response = await fetch('https://api.pinguproxy.com/proxies/create', {method: 'POST',headers: {'Authorization': 'Bearer your-jwt-token','Content-Type': 'application/json'},body: JSON.stringify({plan_id: 1})});const proxy = await response.json();
Response
{"id": 1,"username": "user123","password": "pass123","ip": "192.168.1.1","port": 8080,"assigned_proxy_ipv4": "10.0.0.1","assigned_proxy_ipv6": "2001:db8::1","is_rotating": true,"rotate_interval": 600,"plan_ip_class": 1}