Prerequisites
- A Web Unlocker API key (contact ermakova.t@gologin.com to get one)
- Python 3.x, Node.js, or any HTTP client
Authentication
All requests require your API key in theapikey header:
Make your first request
Send a GET request with the target URL as a query parameter. The response is the fully rendered HTML of the page.cURL
Python
JavaScript (Node.js / Browser)
What you get back
The response body is the raw rendered HTML of the page — the same content you’d see if you opened the URL in a browser. No JSON wrapper, no parsing needed.Handling errors
Check the HTTP status code before processing the response:| Status | Meaning |
|---|---|
200 | Success — response body is the page HTML |
401 | Invalid or missing API key |
422 | Invalid or missing URL parameter |
429 | Rate limit exceeded |
500 / 503 | Server error — retry with backoff |