Install
openclaw skills install dataify-amazon-sellerUse for Dataify Amazon seller information collection Builder tasks. Trigger when the user says or asks for Amazon 卖家信息采集工具, Amazon seller information collection tool, Amazon seller collection tool, Amazon seller information collection, Amazon seller scraping, or Amazon seller URL collection by URL. Supports creating an amazon_seller_by-url task; returning the task_id; configuring or reusing the DATAIFY_API_TOKEN environment variable; and troubleshooting Dataify Builder request failures.
openclaw skills install dataify-amazon-sellerSubmit Amazon seller information collection jobs by URL through Dataify Builder, then stop. After a successful submission, give the user the task_id and tell them to visit https://dataify.com/dashboard/ to view results.
Use DATAIFY_API_TOKEN as the long-term saved token name.
DATAIFY_API_TOKEN is already saved locally in the environment.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.DATAIFY_API_TOKEN.data.task_id from the Builder response.https://dataify.com/dashboard/ to view or manage results.| Field | Required | Default | Notes |
|---|---|---|---|
url | Yes | https://www.amazon.com/sp?ie=UTF8&seller=ADZ7LD48GVFQJ&asin=B07H56J7K1&ref_=dp_merchant_link&isAmazonFulfilled=1 | Amazon seller URL. |
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_seller_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_seller.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_seller.py"
python3 ".\scripts\submit_amazon_seller.py" --url "https://www.amazon.com/sp?ie=UTF8&seller=ADZ7LD48GVFQJ&asin=B07H56J7K1&ref_=dp_merchant_link&isAmazonFulfilled=1" --file-name "amazon-seller"
The script prints a JSON summary with task_id, url, file_name, dashboard_url, and message.
Missing Dataify API TOKEN means no explicit token was passed and DATAIFY_API_TOKEN is not saved locally. Tell the user to get an API TOKEN from Dataify.
URL cannot be empty means no usable seller 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.
https://dataify.com/dashboard/ after successful task creation.