Install
openclaw skills install @dataify-server/dataify-amazon-commentCollect Amazon Comment data and return results
openclaw skills install @dataify-server/dataify-amazon-commentSubmit Amazon product review collection jobs by URL through Dataify Builder and continue through final-result retrieval. After submission, continue monitoring the returned task_id and return the final result by default.
Input: an Amazon product URL.
python3 scripts/submit_amazon_comment.py --url "https://www.amazon.com/dp/B0BZYCJK89"
The command waits up to 10 minutes and prints the final JSON result. Add --no-wait only for submission-only behavior.
If DATAIFY_API_TOKEN is missing, log in or register at https://dashboard.dataify.com/login?utm_source=skill. New accounts receive 50 free credits.
Use DATAIFY_API_TOKEN as the long-term saved token name.
DATAIFY_API_TOKEN is saved locally, use it.API TOKEN in user-facing instructions. Prefer the environment variable name DATAIFY_API_TOKEN for saved local use.PowerShell examples for saving the token for the current session:
$env:DATAIFY_API_TOKEN = "YOUR_DATAIFY_API_TOKEN"
For a persistent user-level variable on Windows:
[Environment]::SetEnvironmentVariable("DATAIFY_API_TOKEN", "YOUR_DATAIFY_API_TOKEN", "User")
url and file_name.data.task_id from the Builder response.| Field | Required | Default | Notes |
|---|---|---|---|
url | Yes | https://www.amazon.com/HISDERN-Checkered-Handkerchief-Classic-Necktie/dp/B0BRXPR726 | Amazon product URL whose reviews should be collected. |
file_name | No | {{TasksID}} | Builder form field. Can be changed by the user. |
If the user has already provided some values, show those values in place of the defaults and only ask whether the remaining/defaulted values should be changed.
Use form fields rather than hand-built URL-encoded strings.
https://scraperapi.dataify.com/builderPOSTBearer DATAIFY_API_TOKENapplication/x-www-form-urlencodedspider_name=amazon.comspider_id=amazon_comment_by-urlspider_errors=truespider_parameters must be a JSON string, not a raw object.file_name defaults to {{TasksID}} and can be changed by the user.For stable execution, prefer scripts/submit_amazon_comment.py with Python 3.6 or newer instead of rewriting the Builder flow. The script writes and reads UTF-8 text.
python3 ".\scripts\submit_amazon_comment.py"
python3 ".\scripts\submit_amazon_comment.py" --url "https://www.amazon.com/HISDERN-Checkered-Handkerchief-Classic-Necktie/dp/B0BRXPR726" --file-name "amazon-comments"
The script prints a JSON summary with task_id, url, file_name and message.
Missing Dataify API TOKEN means DATAIFY_API_TOKEN is not set in the environment. Tell the user to get an API TOKEN from Dataify.
URL cannot be empty means no usable product URL was provided.
File name cannot be empty means no usable file_name was provided.
Missing task_id usually means the authorization header, token, spider_name, or spider_id is wrong.
The default deliverable is the collected result, not only a task_id.
task_id.$dataify-task-operations and monitor the same task ID.
--timeout 1800 for media downloads or clearly high-volume, multi-page, or multi-input collections.--no-wait behavior.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.