# 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:

```bash
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:&#x20;

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

```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://help.netnut.io/netnut-documentation/netnut-scraper-apis/website-unblocker/api-integration-new/example-requests.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
