Proxy Integration

To make a request using Website Unblocker, you can typically use cURL, following the basic command structure.

cURL example:

curl -k -x username:[email protected]:5959 "[example.site.com]"
  • -x: Specifies the proxy server. Replace username:password with your credentials unblocker.netnut.io:5959

  • -k: This option allows cURL to make insecure connections, it is necessary and obligatory when using the services

  • [example.site.com]: The URL of the site you wish to scrape

As well, you may use the Website Unblocker in other programming languages

import requests

proxies = {
    "http": "http://username:[email protected]:5959",
    "https": "http://username:[email protected]:5959"
}

response = requests.get("[target_url]", proxies=proxies, verify=False)
print(response.text)

Last updated