Documentation IndexFetch the complete documentation index at: /docs/llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /docs/llms.txt
Use this file to discover all available pages before exploring further.
apikey
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>
200
401
422
429
500
503
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?