Last updated 1 year ago
Инструмент позволяет получать список доступных бесплатных прокси.
Запрос позволяет в реальном времени проверить статус прокси.
curl -L \ --url 'https://tools.proxy-solutions.net/api/free-proxies/countries'
{ "success": true, "countries": [ { "name": "text", "code": "text" } ] }
Идентификатор прокси
curl -L \ --url 'https://tools.proxy-solutions.net/api/free-proxies/{proxy_id}/check'
{ "success": true, "proxy": { "id": 1, "state": "alive", "ip": "text", "port": 1, "proto": "text", "location": { "code": "text", "name": "text" }, "tested_at": 1, "tested": 1, "latency": 1, "anonymity": "high" } }
Номер страницы
Коды стран (полученные из предыдущего запроса /free-proxies/countries)
Порты (через запятую - 8080,8000-8500)
Задержка в миллисекундах (500 - означает ниже 500мс)
curl -L \ --request POST \ --url 'https://tools.proxy-solutions.net/api/free-proxies/select' \ --header 'Content-Type: application/json' \ --data '{ "location": [ "text" ], "protocols": { "http": true, "https": true, "socks4": true, "socks5": true }, "ports": "text", "latency": 1 }'
{ "success": true, "page": 1, "num_pages": 1, "proxies": [ { "id": 1, "state": "alive", "ip": "text", "port": 1, "proto": "text", "location": { "code": "text", "name": "text" }, "tested_at": 1, "tested": 1, "latency": 1, "anonymity": "high" } ] }