v48

latestOpenAPI 3.0.0raw.githubusercontent.com2025-12-0297180624.8 KB
Browser

get/boxes/{boxId}/browser/proxy

Path parameters

boxIdstring required
Example:c9bdc193-b54b-4ddb-a035-5ac0c598d32d

Box ID

Response

Browser proxy settings

httpServerstring required

HTTP proxy server, format: http://<username>:<password>@<host>:<port>

httpsServerstring required

HTTPS proxy server, format: https://<username>:<password>@<host>:<port>

socks5Serverstring required

SOCKS5 proxy server, format: socks5://<username>:<password>@<host>:<port>

pacUrlstring

PAC (Proxy Auto-Configuration) URL.

bypassListstring[]

List of IP addresses and domains that should bypass the proxy. These addresses will be accessed directly without going through the proxy server. Default is ['127.0.0.1', 'localhost']

Example response

{
  "httpServer": "http://127.0.0.1:8080",
  "httpsServer": "https://127.0.0.1:8080",
  "socks5Server": "socks5://127.0.0.1:8080",
  "pacUrl": "http://proxy.company.com/proxy.pac",
  "bypassList": [
    "127.0.0.1",
    "localhost",
    "example.com",
    "*.example.com",
    "*.example.org",
    "https://x.*.y.com:99",
    "192.168.1.1/16",
    "fefe:13::abc/33"
  ]
}