Skip to main content
GET
/
api
/
proxy-config
Get Proxy Configuration
curl --request GET \
  --url http://localhost:8080/api/proxy-config
{
  "enabled": true,
  "type": "http",
  "url": "<string>",
  "username": "<string>",
  "password": "<string>",
  "no_proxy": "<string>",
  "timeout": 123,
  "skip_tls_verify": true,
  "enable_for_scim": true,
  "enable_for_inference": true,
  "enable_for_api": true
}

Response

Current proxy configuration

enabled
boolean

Whether the proxy is enabled

type
enum<string>
default:http

Proxy type

Available options:
http,
socks5,
tcp
url
string
username
string

Optional authentication username

password
string

Optional authentication password

no_proxy
string

Comma-separated list of hosts to bypass proxy

timeout
integer

Connection timeout in seconds

skip_tls_verify
boolean

Skip TLS certificate verification

enable_for_scim
boolean

Enable proxy for SCIM requests (enterprise only)

enable_for_inference
boolean

Enable proxy for inference requests

enable_for_api
boolean

Enable proxy for API requests