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:
Documentation Index
Fetch the complete documentation index at: /docs/llms.txt
Use this file to discover all available pages before exploring further.
apikey header:
apikey: YOUR_API_KEY
https://parsing.webunlocker.gologin.com/v1
curl "https://parsing.webunlocker.gologin.com/v1/scrape?url=https%3A%2F%2Fexample.com" \
-H "apikey: YOUR_API_KEY"
import requests
response = requests.get(
"https://parsing.webunlocker.gologin.com/v1/scrape",
params={"url": "https://example.com"},
headers={"apikey": "YOUR_API_KEY"}
)
print(response.text)
const response = await fetch(
"https://parsing.webunlocker.gologin.com/v1/scrape?url=" +
encodeURIComponent("https://example.com"),
{ headers: { apikey: "YOUR_API_KEY" } }
);
const html = await response.text();
console.log(html);
<!DOCTYPE html>
<html>
<head><title>Example Domain</title></head>
<body>...</body>
</html>
| 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 |
response = requests.get(
"https://parsing.webunlocker.gologin.com/v1/scrape",
params={"url": "https://example.com"},
headers={"apikey": "YOUR_API_KEY"}
)
if response.status_code == 200:
html = response.text
else:
print(f"Error {response.status_code}: {response.text}")
npm install -g gologin-webunlocker
GOLOGIN_WEBUNLOCKER_API_KEY=wu_... gologin-webunlocker scrape https://example.com
GOLOGIN_WEBUNLOCKER_API_KEY=wu_... gologin-webunlocker text https://example.com
GOLOGIN_WEBUNLOCKER_API_KEY=wu_... gologin-webunlocker markdown https://example.com
npm install -g gologin-web-access
export GOLOGIN_WEB_UNLOCKER_API_KEY="wu_..."
gologin-web-access read https://example.com
gologin-web-access scrape-json https://example.com
gologin-web-access batch-scrape https://example.com/page/1 https://example.com/page/2 --format text
Was this page helpful?