For the complete documentation index, see llms.txt. This page is also available as Markdown.

Example Requests

Basic Request Example

In this example, we send a simple API request to access https://myip.netnut.io using the Website Unblocker API, without any custom options:

curl -X POST https://unblocker.netnut.io/unblock \
  -H "Authorization: Basic <base64-encoded-credentials>" \
  -H "Content-Type: application/json" \
  -d '{
    "url": "https://myip.netnut.io"
  }'

Replace <base64-encoded-credentials> with your actual Base64-encoded username:password.

Upon successful execution, the response will return the HTML content of https://myip.netnut.io/ like so:

<!DOCTYPE html>
<body>
172.56.64.121
</body>
</html>

Last updated