Install
openclaw skills install @dataify-server/dataify-web-unlockerUnlock blocked or JS-heavy pages through Dataify
openclaw skills install @dataify-server/dataify-web-unlockerUse the bundled wrappers to call Dataify's Web Unlocker API with a stable parameter set across platforms.
Treat every request field as optional user input except for url. Confirm the target url with the user before making the request if it is not already explicit in the prompt. For every other field, keep the default value unless the user explicitly asks to override it.
Input: one public webpage URL.
python3 scripts/invoke-dataify-web-unlocker.py --url "https://example.com"
This is a synchronous request: the command prints the unlocked page result directly.
If DATAIFY_API_TOKEN is missing, log in or register at https://dashboard.dataify.com/login?utm_source=skill. New accounts get 50 free credits, enough for about 6,000 trial results, valid for 7 days, and only successful requests are billed.
scripts/invoke-dataify-web-unlocker.py on macOS/Linux or when cross-platform portability matters.scripts/invoke-dataify-web-unlocker.ps1 on Windows when PowerShell is the best fit.curl command only when the user explicitly asks for it.url with the user if it was not clearly provided. Do not guess the URL.DATAIFY_API_TOKEN from the environment.Dataify requires an API token. New accounts get 50 free credits, enough for about 6,000 trial results, valid for 7 days, and only successful requests are billed. Once registration is complete, tell me and I'll continue the current task..Prefer a permanent environment-variable setup instead of setting the token only for the current terminal session.
Windows PowerShell, permanent for the current user:
[Environment]::SetEnvironmentVariable("DATAIFY_API_TOKEN", "your_token_here", "User")
Then reopen PowerShell. If the current session also needs the token immediately, run:
$env:DATAIFY_API_TOKEN = "your_token_here"
macOS or Linux, permanent for bash:
echo 'export DATAIFY_API_TOKEN="your_token_here"' >> ~/.bashrc
source ~/.bashrc
macOS or Linux, permanent for zsh:
echo 'export DATAIFY_API_TOKEN="your_token_here"' >> ~/.zshrc
source ~/.zshrc
Use these defaults unless the user asks for different values. Only url must be collected before the real request is sent:
{
"url": "https://www.google.com",
"type": "html",
"js_render": "True",
"block_resources": "",
"clean_content": "",
"country": "us",
"headers": "",
"cookies": "",
"wait": "",
"wait_for": "",
"follow_redirect": "True",
"isjson": "1"
}
Ask for the URL first if the user did not provide one. After that, the minimal call should pass only url and rely on defaults for everything else.
Cross-platform Python:
python scripts/invoke-dataify-web-unlocker.py --url "https://www.google.com"
Windows PowerShell:
& ".\scripts\invoke-dataify-web-unlocker.ps1" -Url "https://www.google.com"
Common overrides in Python:
python scripts/invoke-dataify-web-unlocker.py \
--url "https://example.com" \
--js-render "True" \
--country "us" \
--wait "3000" \
--wait-for ".main-content"
Common overrides in PowerShell:
& ".\scripts\invoke-dataify-web-unlocker.ps1" `
-Url "https://example.com" `
-JsRender "True" `
-Country "us" `
-Wait "3000" `
-WaitFor ".main-content"
Use --dry-run or -DryRun to preview the endpoint, authorization state, and JSON payload without making the network request:
python scripts/invoke-dataify-web-unlocker.py --url "https://example.com" --dry-run
& ".\scripts\invoke-dataify-web-unlocker.ps1" -Url "https://example.com" -DryRun
If the user explicitly wants the raw request, use curl.exe in PowerShell, not curl, to avoid the PowerShell alias ambiguity.
Before calling the API, check the token:
if (-not $env:DATAIFY_API_TOKEN) {
Write-Error "DATAIFY_API_TOKEN is not set. Sign in at https://dashboard.dataify.com?utm_source=skill to obtain it."
exit 1
}
Then send the request:
curl.exe -X POST "https://webunlocker.dataify.com/request" `
-H "Authorization: Bearer $env:DATAIFY_API_TOKEN" `
-H "Content-Type: application/json" `
-d "{\"url\":\"https://www.google.com\",\"type\":\"html\",\"js_render\":\"True\",\"block_resources\":\"\",\"clean_content\":\"\",\"country\":\"us\",\"headers\":\"\",\"cookies\":\"\",\"wait\":\"\",\"wait_for\":\"\",\"follow_redirect\":\"True\",\"isjson\":\"1\"}"
url is the only field that should be treated as required input from the user.url if it is missing or ambiguous.headers and cookies are passed through as strings exactly as provided by the caller."True" because that matches the supplied API format.isjson as "1" unless the user explicitly requests a different response mode.export for macOS/Linux shells, $env: for Windows PowerShell, or set for Windows Command Prompt). Show other platforms or persistent setup only when detection is ambiguous or the user asks.DATAIFY_API_TOKEN is present; never print its value. If verification succeeds, continue the original task without asking the user to repeat it..env unless the execution path explicitly loads it, and ensure .env is ignored by version control.