Base URL
GET
https://v1.empr.cloud/api/v1/folders/{folderId}/proxies
Request
Request headers
Headers
Название
Тип / Значение
Описание
X-Token
String
Auth token
URL Parameters
Query parameters
Название
Тип / Значение
Описание
folderId
UUID
The ID of the folder
Request example
1const url =
2 "https://v1.empr.cloud/api/v1/folders/{folderId}/proxies";
3
4const options = {
5 method: "GET",
6 headers: {
7 "X-Token": "Your Token",
8 },
9};
10
11fetch(url, options)
12 .then((response) => {
13 response.json().then((data) => {
14 console.log(data);
15 });
16 })
17 .catch((error) => {
18 console.error(error);
19 });
Response
Response data
Response
Название
Тип / Значение
Описание
data
Array<Proxy>
List of proxies
Response example
1const url =
2 "https://v1.empr.cloud/api/v1/folders/{folderId}/proxies";
3
4const options = {
5 method: "GET",
6 headers: {
7 "X-Token": "Your Token",
8 },
9};
10
11fetch(url, options)
12 .then((response) => {
13 response.json().then((data) => {
14 console.log(data);
15 });
16 })
17 .catch((error) => {
18 console.error(error);
19 });
Types
Proxy
Название
Тип / Значение
Описание
proxy_name
String
Name
proxy_type
String
Type (HTTP, SOCKS4, SOCKS5, SSH)
proxy_ip
String
IP
proxy_port
Number
Port
proxy_username
String?
Username
proxy_password
String?
Password
proxy_geo
Geolocation?
Geolocation
update_url
String?
URL to renew proxy IP
Geolocation
Название
Тип / Значение
Описание
ip
String
IP
country
String
Country
region
String
Region
city
String
City
zipcode
String
Zipcode
timezone
String
Timezone
latitude
Number
Latitude
longitude
Number
Longitude