Proxy support ============= sttp library by default checks for your System proxy properties (`docs `_): Following settings are checked: 1. ``socksProxyHost`` and ``socksProxyPort`` *(default: 1080)* 2. ``http.proxyHost`` and ``http.proxyPort`` *(default: 80)* Settings are loaded **in given order** and the **first existing value** is being used. Otherwise, proxy values can be specified manually when creating a backend:: import com.softwaremill.sttp._ implicit val backend = HttpURLConnectionBackend( options = SttpBackendOptions.httpProxy("some.host", 8080)) sttp .get(uri"...") .send() // uses the proxy