Initial Setup

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

cURL example:

curl -x username:password@unblocker.netnut.io:5959 -k [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 = {
    "https": "
https://username:password@unblocker.netnut.io:5959
",
    "http": "https://username:password@unblocker.netnut.io:5959"
}

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

Last updated

Copyright NetNut LTD